Skip to content

Commit e6277be

Browse files
datapythonistajreback
authored andcommitted
Ignoring W504 (line break after bineay operator) in linting (#23101)
1 parent 58048e7 commit e6277be

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.pep8speaks.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pycodestyle:
1111
max-line-length: 79
1212
ignore:
1313
- W503, # line break before binary operator
14+
- W504, # line break after binary operator
1415
- E402, # module level import not at top of file
1516
- E722, # do not use bare except
1617
- E731, # do not assign a lambda expression, use a def

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ parentdir_prefix = pandas-
1515
max-line-length = 79
1616
ignore =
1717
W503, # line break before binary operator
18+
W504, # line break after binary operator
1819
E402, # module level import not at top of file
1920
E722, # do not use bare except
2021
E731, # do not assign a lambda expression, use a def

0 commit comments

Comments
 (0)