Skip to content

Commit 8a1164c

Browse files
alimcmaster1WillAyd
authored andcommitted
Enforce E741 (#22795)
1 parent 0480f4c commit 8a1164c

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

.pep8speaks.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ pycodestyle:
88
ignore: # Errors and warnings to ignore
99
- E402, # module level import not at top of file
1010
- E731, # do not assign a lambda expression, use a def
11-
- E741, # do not use variables named 'l', 'O', or 'I'
1211
- W503 # line break before binary operator

setup.cfg

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ parentdir_prefix = pandas-
1515
ignore =
1616
E402, # module level import not at top of file
1717
E731, # do not assign a lambda expression, use a def
18-
E741, # do not use variables named 'l', 'O', or 'I'
1918
W503, # line break before binary operator
2019
C405, # Unnecessary (list/tuple) literal - rewrite as a set literal.
2120
C406, # Unnecessary (list/tuple) literal - rewrite as a dict literal.

0 commit comments

Comments
 (0)