Skip to content

Commit

Permalink
Fix flake8 config
Browse files Browse the repository at this point in the history
  • Loading branch information
hukkin committed Sep 24, 2024
1 parent a9074eb commit 2a66e57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
max-line-length = 99
max-complexity = 10
extend-ignore =
E203, # E203: Whitespace before ':' (violates PEP8 and black style)
A003, # A003: class attribute is shadowing a python builtin (we violate this on purpose a lot)
# E203: Whitespace before ':' (violates PEP8 and black style)
E203,
# A003: class attribute is shadowing a python builtin (we violate this on purpose a lot)
A003,
extend-exclude = */site-packages/*

0 comments on commit 2a66e57

Please sign in to comment.