.flake8: ignore 'W504 line break after binary operator'

This commit is contained in:
Peter Barker 2021-02-12 09:57:04 +11:00 committed by Peter Barker
parent 4c56ac7eb3
commit a45d4e93be

View File

@ -7,6 +7,8 @@ ignore =
# E226: missing whitespace around arithmetic operator
E226,
# E261 at least two spaces before inline comment
E261
E261,
# W504 line break after binary operator
W504
max-line-length = 127