mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
fix PEP8 "E203 whitespace before ':' or ','"
This commit is contained in:
parent
fccb990521
commit
f1812d5935
6 changed files with 20 additions and 20 deletions
|
|
@ -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():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue