Skip to content

Commit bc69aa0

Browse files
committed
Fixed Flake8 Error Code '#' supplied to 'ignore' option does not match
1 parent fcacd53 commit bc69aa0

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

setup.cfg

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ universal = false
77

88
[flake8]
99
ignore =
10-
E203, # space before : (needed for how black formats slicing)
11-
# E266, # too many leading '#' for block comment
12-
E501, # line too long
13-
E731, # do not assign a lambda expression, use a def
14-
W503, # line break before binary operator
10+
# space before : (needed for how black formats slicing)
11+
E203,
12+
# too many leading '#' for block comment
13+
# E266,
14+
# line too long
15+
E501,
16+
# do not assign a lambda expression, use a def
17+
E731,
18+
# line break before binary operator
19+
W503,
1520
max-line-length = 88
1621
# select = B,C,E,F,W,T4,B9
1722
# max-complexity = 18

0 commit comments

Comments
 (0)