fix PEP8 "E201 whitespace after '(' or '[' or '{'"

This commit is contained in:
Hans-Christoph Steiner 2014-05-01 22:21:47 -04:00
parent 998011d535
commit 4af2e0004f
4 changed files with 34 additions and 34 deletions

View file

@ -68,7 +68,7 @@ def main():
if args:
vercodes = common.read_pkg_args(args, True)
apks = { appid: None for appid in vercodes }
apks = {appid: None for appid in vercodes }
# Get the signed apk with the highest vercode
for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
@ -86,7 +86,7 @@ def main():
else:
apks = { common.apknameinfo(apkfile)[0]: apkfile for apkfile in
apks = {common.apknameinfo(apkfile)[0]: apkfile for apkfile in
sorted(glob.glob(os.path.join(output_dir, '*.apk'))) }
for appid, apk in apks.iteritems():