Fix flake8 E275 missing whitespace after keyword

This commit is contained in:
Jochen Sprickerhof 2022-07-31 09:14:17 +02:00
parent 42ef7c3406
commit eb79522a36
6 changed files with 11 additions and 11 deletions

View file

@ -1017,7 +1017,7 @@ def v1_sort_packages(packages, fdroid_signing_key_fingerprints):
if package.get('versionCode', None):
versionCode = -int(package['versionCode'])
return(packageName, group, signer, versionCode)
return packageName, group, signer, versionCode
packages.sort(key=v1_sort_keys)