Ignore flake8 warning W504

Actually, I prefer binary operators at the end of the line and this
seems to be the current state of the whole code base, so it's kinda
stupid to complain about them ;)
This commit is contained in:
Tobias Gruetzmacher 2019-06-30 19:50:28 +02:00
parent b8b488670e
commit a7b6393d6f

View file

@ -34,7 +34,7 @@ deps =
[flake8]
# we aim for 79, but this suppresses warnings for now...
max-line-length = 120
ignore = E127,E128,E241,FI12,FI14,FI15,FI50,FI51,FI53,FI54,FI55
ignore = E127,E128,E241,FI12,FI14,FI15,FI50,FI51,FI53,FI54,FI55,W504
require-code = True
min-version = 2.7