Skip to content

Commit

Permalink
RF: The __future__ is now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Debilski committed Mar 25, 2016
1 parent f9ab90c commit 37fe1a5
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -19,8 +19,8 @@ install:
- pip install $PYZMQ --install-option="--zmq=bundled"
# command to run tests
script: >
python -c "from __future__ import print_function; import zmq; print('Using zmq %s.' % zmq.zmq_version())" &&
python -c "from __future__ import print_function; import zmq; print('Using pyzmq %s.' % zmq.pyzmq_version())" &&
python -c "import zmq; print('Using zmq %s.' % zmq.zmq_version())" &&
python -c "import zmq; print('Using pyzmq %s.' % zmq.pyzmq_version())" &&
nosetests -v && python ./pelitagame --progress &&
for player in ./players/*Player.py
do
Expand Down
2 changes: 0 additions & 2 deletions module_player.py
@@ -1,8 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from __future__ import print_function

import argparse
import inspect
import keyword
Expand Down
2 changes: 0 additions & 2 deletions pelita/layout.py
@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-

from __future__ import print_function

import base64
import random
import zlib
Expand Down
2 changes: 0 additions & 2 deletions pelita/simplesetup.py
Expand Up @@ -26,8 +26,6 @@
re-investigate this decision.
"""

from __future__ import print_function

import json
import logging
import multiprocessing
Expand Down
2 changes: 0 additions & 2 deletions pelita/ui/tk_canvas.py
@@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
from __future__ import division

import json
import logging
import time
Expand Down
2 changes: 0 additions & 2 deletions pelitagame
@@ -1,8 +1,6 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from __future__ import print_function

import argparse
import contextlib
import json
Expand Down

0 comments on commit 37fe1a5

Please sign in to comment.