diff --git a/.pep8speaks.yml b/.pep8speaks.yml index c3a85d595eb59..79101a59ac767 100644 --- a/.pep8speaks.yml +++ b/.pep8speaks.yml @@ -11,6 +11,7 @@ pycodestyle: max-line-length: 79 ignore: - W503, # line break before binary operator + - W504, # line break after binary operator - E402, # module level import not at top of file - E722, # do not use bare except - E731, # do not assign a lambda expression, use a def diff --git a/setup.cfg b/setup.cfg index 29392d7f15345..1981d2209240e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,7 @@ parentdir_prefix = pandas- max-line-length = 79 ignore = W503, # line break before binary operator + W504, # line break after binary operator E402, # module level import not at top of file E722, # do not use bare except E731, # do not assign a lambda expression, use a def