projects
/
catalyst.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1762a4c
)
catalyst: split combined import
author
Dylan Baker
<baker.dylan.c@gmail.com>
Sun, 13 Oct 2013 09:07:37 +0000
(
02:07
-0700)
committer
Matt Turner
<mattst88@gmail.com>
Sat, 26 Oct 2013 17:22:51 +0000
(10:22 -0700)
Combining multiple modules into a single import is discouraged in
python's PEP8 style guide:
"""
Imports should usually be on separate lines, e.g.:
Yes: import os
import sys
No: import sys, os
"""
Reviewed-by: Matt Turner <mattst88@gmail.com>
catalyst
patch
|
blob
|
history
diff --git
a/catalyst
b/catalyst
index 2378a8727ca47877afd41f6f5bbd0f80cc66c2d7..36bd7097259044bfeecc61040789b100a337e714 100755
(executable)
--- a/
catalyst
+++ b/
catalyst
@@
-7,7
+7,11
@@
# Chris Gianelloni <wolf31o2@wolf31o2.org>
# $Id$
-import os, sys, imp, string, getopt
+import os
+import sys
+import imp
+import string
+import getopt
import pdb
import os.path