summaryrefslogtreecommitdiff
path: root/script/bisect-test.py
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2018-07-30 18:21:38 +1200
committerDouglas Bagnall <dbagnall@samba.org>2018-08-24 07:49:30 +0200
commit95c36d825c68505dd28fda2a1bf7bcc707c523ad (patch)
tree091d17e7fb21a611e8ec41ccd6ff55fb5db8d2a1 /script/bisect-test.py
parent4d529c400ba966ff633812a0f9f6a46862bd9e56 (diff)
downloadsamba-95c36d825c68505dd28fda2a1bf7bcc707c523ad.tar.gz
PEP8: fix E401: multiple imports on one line
Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'script/bisect-test.py')
-rwxr-xr-xscript/bisect-test.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/script/bisect-test.py b/script/bisect-test.py
index cdfc93bdb8a..7896742747c 100755
--- a/script/bisect-test.py
+++ b/script/bisect-test.py
@@ -5,7 +5,9 @@
from subprocess import call, check_call, Popen, PIPE
-import os, tempfile, sys
+import os
+import tempfile
+import sys
from optparse import OptionParser
parser = OptionParser()