Skip to content

Commit

Permalink
Fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Phlya authored Dec 2, 2022
1 parent caf38db commit 9e51c9f
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,24 @@ exclude =

max-line-length = 120
ignore =
E203 # whitespace before ':'
E266 # too many leading '#' for block comment
E501 # line too long
W503 # line break before binary operator
# whitespace before ':'
E203
# too many leading '#' for block comment
E266
# line too long
E501
# line break before binary operator
W503
select =
C # mccabe complexity
E # pycodestyle
F # pyflakes error
W # pyflakes warning
B # bugbear
B950 # line exceeds max-line-length + 10%
# mccabe complexity
C
# pycodestyle
E
# pyflakes error
F
# pyflakes warning
W
# bugbear
B
# line exceeds max-line-length + 10%
B950

0 comments on commit 9e51c9f

Please sign in to comment.