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:
parent
5941b2e071
commit
d580f5bac8
|
@ -194,7 +194,8 @@ this to your ``setup.py`` file::
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
import sys,subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
errno = subprocess.call([sys.executable, 'runtests.py'])
|
errno = subprocess.call([sys.executable, 'runtests.py'])
|
||||||
raise SystemExit(errno)
|
raise SystemExit(errno)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue