fix PEP8 "E203 whitespace before ':' or ','"

This commit is contained in:
Hans-Christoph Steiner 2014-05-01 22:06:59 -04:00
parent fccb990521
commit f1812d5935
6 changed files with 20 additions and 20 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():