From b34bcd0f58be598822992f12cc897c1c66d8e98d Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 2 Dec 2018 00:23:22 +0100 Subject: [PATCH] flake8: Ignore W504 It is ignored by default, but we must redefine the ignore since we specify what warnings are ignored ourselves. --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 95211279..1bc167c3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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