Python cleanups, round 2: line too long, etc.

- Line too long (>80)
- Pointless continuation (\) characters
- Trailing semi-colon
- 'not foo in bar' -> 'foo not in bar'

Change-Id: I7acb7f166d2f945005bf5578a740b887b1654597
This commit is contained in:
Chad Horohoe
2018-05-17 10:19:22 -07:00
committed by Paladox
parent dd22470db8
commit 691423248d
17 changed files with 183 additions and 140 deletions

View File

@@ -22,7 +22,7 @@ import sys
def print_help():
for (n, v) in vars(sys.modules['__main__']).items():
if not n.startswith("__") and not n in ['help', 'reload'] \
if not n.startswith("__") and n not in ['help', 'reload'] \
and str(type(v)) != "<type 'javapackage'>" \
and not str(v).startswith("<module"):
print("\"%s\" is \"%s\"" % (n, v))