Skip to content

Commit 073188b

Browse files
TomAugspurgerharisbal
authored and
harisbal
committed
Added E741 to flake8 config (pandas-dev#19496)
1 parent c753b3f commit 073188b

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)