Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksongoode committed Apr 24, 2024
1 parent 4668151 commit 0c7f1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycg/processing/preprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def iterate_mod_items(items, const):
)
items = [
i for i in items if not \

Check failure on line 117 in pycg/processing/preprocessor.py

View workflow job for this annotation

GitHub Actions / flake8

the backslash is redundant between brackets
any(ignored_mod in i for ignored_mod in ignored_mods_set)
any(ignored_mod in i for ignored_mod in self.ignored_mods)

Check failure on line 118 in pycg/processing/preprocessor.py

View workflow job for this annotation

GitHub Actions / flake8

continuation line unaligned for hanging indent
]
print('pre items', items)

Expand Down

0 comments on commit 0c7f1ec

Please sign in to comment.