mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
fix PEP8 "E201 whitespace after '(' or '[' or '{'"
This commit is contained in:
parent
998011d535
commit
4af2e0004f
4 changed files with 34 additions and 34 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