Skip to content

Commit 6f1cf51

Browse files
authored
fix flake8 config (pydata#7321)
* fix flake8 config * reformat
1 parent 9973b6e commit 6f1cf51

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

setup.cfg

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,12 @@ markers =
147147

148148
[flake8]
149149
ignore =
150-
E203 # whitespace before ':' - doesn't work well with black
151-
E402 # module level import not at top of file
152-
E501 # line too long - let black worry about that
153-
E731 # do not assign a lambda expression, use a def
154-
W503 # line break before binary operator
150+
# E203: whitespace before ':' - doesn't work well with black
151+
# E402: module level import not at top of file
152+
# E501: line too long - let black worry about that
153+
# E731: do not assign a lambda expression, use a def
154+
# W503: line break before binary operator
155+
E203, E402, E501, E731, W503
155156
exclude =
156157
.eggs
157158
doc

0 commit comments

Comments
 (0)