Skip to content

Commit

Permalink
fix flake8 config (#7321)
Browse files Browse the repository at this point in the history
* fix flake8 config

* reformat
  • Loading branch information
mathause authored Nov 28, 2022
1 parent 9973b6e commit 6f1cf51
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,12 @@ markers =

[flake8]
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
# E203: whitespace before ':' - doesn't work well with black
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
# W503: line break before binary operator
E203, E402, E501, E731, W503
exclude =
.eggs
doc
Expand Down

0 comments on commit 6f1cf51

Please sign in to comment.