flake8: Ignore W504

It is ignored by default, but we must redefine the ignore since we
specify what warnings are ignored ourselves.
This commit is contained in:
Stein Magnus Jodal 2018-12-02 00:23:22 +01:00
parent c94b9d5fd2
commit b34bcd0f58

View File

@ -3,7 +3,8 @@ application-import-names = mopidy,tests
exclude = .git,.tox,build,js,tmp
# Ignored flake8 warnings:
# - E402 module level import not at top of file
ignore = E402
# - W504 line break after binary operator
ignore = E402, W504
[wheel]
universal = 1