From d580f5bac81fdeafe3a9b2cf6cf763a0ac582c40 Mon Sep 17 00:00:00 2001 From: okin Date: Wed, 14 Jan 2015 12:38:37 +0000 Subject: [PATCH] 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 --- doc/en/goodpractises.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/en/goodpractises.txt b/doc/en/goodpractises.txt index 18f51b1b9..31979618a 100644 --- a/doc/en/goodpractises.txt +++ b/doc/en/goodpractises.txt @@ -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)