Skip to content

Commit 6670dfc

Browse files
TomAugspurgerjreback
authored andcommitted
Added E741 to flake8 config (#19496)
1 parent 78ba063 commit 6670dfc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.cfg

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ tag_prefix = v
1212
parentdir_prefix = pandas-
1313

1414
[flake8]
15-
ignore = E731,E402,W503
15+
ignore =
16+
E402, # module level import not at top of file
17+
E731, # do not assign a lambda expression, use a def
18+
E741, # do not use variables named 'l', 'O', or 'I'
19+
W503 # line break before binary operator
1620
max-line-length = 79
1721

1822
[yapf]

0 commit comments

Comments
 (0)