We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58048e7 commit e6277beCopy full SHA for e6277be
.pep8speaks.yml
@@ -11,6 +11,7 @@ pycodestyle:
11
max-line-length: 79
12
ignore:
13
- W503, # line break before binary operator
14
+ - W504, # line break after binary operator
15
- E402, # module level import not at top of file
16
- E722, # do not use bare except
17
- E731, # do not assign a lambda expression, use a def
setup.cfg
@@ -15,6 +15,7 @@ parentdir_prefix = pandas-
max-line-length = 79
ignore =
W503, # line break before binary operator
18
+ W504, # line break after binary operator
19
E402, # module level import not at top of file
20
E722, # do not use bare except
21
E731, # do not assign a lambda expression, use a def
0 commit comments