Only one import on one line.

If this should show good practices, the code should not set a bad example ;)

--HG--
branch : okin/only-one-import-on-one-line-if-this-shou-1421239108222
This commit is contained in:
okin 2015-01-14 12:38:37 +00:00
parent 5941b2e071
commit d580f5bac8
1 changed files with 2 additions and 1 deletions

View File

@ -194,7 +194,8 @@ this to your ``setup.py`` file::
pass
def run(self):
import sys,subprocess
import subprocess
import sys
errno = subprocess.call([sys.executable, 'runtests.py'])
raise SystemExit(errno)