Skip to content

Commit

Permalink
Enable Flake8 E128
Browse files Browse the repository at this point in the history
This check looks for under-indented continuation lines.
  • Loading branch information
jbytheway committed Sep 17, 2020
1 parent b8bbd5a commit bcb4e93
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ ignore =
# The following errors were present when starting to use flake8; they need
# to be triaged to determine which we should fix and which we should leave
# permanently ignored
E128,
E131,
E201,
E202,
Expand Down
2 changes: 1 addition & 1 deletion tools/json_tools/cddatags.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main(args):

for obj in json_data:
for id_key in ('id', 'abstract', 'ident',
'nested_mapgen_id', 'update_mapgen_id', 'result'):
'nested_mapgen_id', 'update_mapgen_id', 'result'):
if id_key in obj:
id = obj[id_key]
if type(id) == str and id:
Expand Down

0 comments on commit bcb4e93

Please sign in to comment.