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

@@ -54,8 +54,8 @@ def extract(path, outdir, bin):
for mem in tar.getmembers():
if mem.name != bin:
extract_one(mem)
# Extract bin last so other processes only short circuit when extraction is
# finished.
# Extract bin last so other processes only short circuit when
# extraction is finished.
extract_one(tar.getmember(bin))
@@ -72,7 +72,8 @@ def main(args):
name, _ = parts
# Avoid importing from gerrit because we don't want to depend on the right CWD.
# Avoid importing from gerrit because we don't want to depend on the right
# working directory
sha1 = hashlib.sha1(open(path, 'rb').read()).hexdigest()
outdir = '%s-%s' % (path[:-len(suffix)], sha1)
rel_bin = os.path.join('package', 'bin', name)