mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Fix flake8 E275 missing whitespace after keyword
This commit is contained in:
parent
42ef7c3406
commit
eb79522a36
6 changed files with 11 additions and 11 deletions
|
|
@ -751,9 +751,9 @@ def insert_funding_yml_donation_links(apps):
|
|||
app['OpenCollective'] = s
|
||||
if not app.get('Donate'):
|
||||
if 'liberapay' in data:
|
||||
del(data['liberapay'])
|
||||
del data['liberapay']
|
||||
if 'open_collective' in data:
|
||||
del(data['open_collective'])
|
||||
del data['open_collective']
|
||||
# this tuple provides a preference ordering
|
||||
for k in ('custom', 'github', 'patreon', 'community_bridge', 'ko_fi', 'issuehunt'):
|
||||
v = data.get(k)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue