Skip to content

Commit afd9563

Browse files
committed
Ignore flake8 warning W504
Currently breaking tests with the latest flake8, which added a pair of competing rules, W503 and W504, for whether line breaks should be before or after a binary operator. `ignore` needs to ignore at least one of them, otherwise `flake8` can never be pleased.
1 parent a2ed32c commit afd9563

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tag_svn_revision = false
33

44
[flake8]
5-
ignore = W601 ; # noqa doesn't silence this one
5+
ignore = W504, W601
66
max-line-length = 100
77

88
[isort]

0 commit comments

Comments
 (0)