Skip to content

Commit 5af06f0

Browse files
CI: Align pep8speaks config with setup.cfg (#19841)
1 parent 8768876 commit 5af06f0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.pep8speaks.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ scanner:
66
pycodestyle:
77
max-line-length: 79
88
ignore: # Errors and warnings to ignore
9-
- E731
10-
- E402
9+
- E402, # module level import not at top of file
10+
- E731, # do not assign a lambda expression, use a def
11+
- E741, # do not use variables named 'l', 'O', or 'I'
12+
- W503 # line break before binary operator

0 commit comments

Comments
 (0)