Skip to content

Commit

Permalink
Fixed .flake8 file
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMusgrave committed Jan 16, 2023
1 parent 51a29e1 commit 774df78
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
[flake8]

extend-ignore =
E266 # too many leading '#' for block comment
E203 # whitespace before ':'
E402 # module level import not at top of file
E501 # line too long
E741 # ambiguous variable names
E265 # block comment should start with #
# too many leading '#' for block comment
E266
# whitespace before ':'
E203
# module level import not at top of file
E402
# line too long
E501
# ambiguous variable names
E741
# block comment should start with #
E265

per-file-ignores =
__init__.py:F401

0 comments on commit 774df78

Please sign in to comment.