From e133e6a02089ee1826cacefbdcf934de99168d13 Mon Sep 17 00:00:00 2001 From: Mike Bonnet Date: Mar 05 2019 18:21:28 +0000 Subject: ignore Flake8 warning W504 The version of Flake8 in Fedora 29 started enforcing W503 and W504, which are mutually exclusive. The Greenwave code is currently following the W503 rule, so ignore W504. --- diff --git a/tox.ini b/tox.ini index 7a3169f..bf32f21 100644 --- a/tox.ini +++ b/tox.ini @@ -38,4 +38,5 @@ show-source = True max-line-length = 100 exclude = .git,.tox,dist,*egg,*fedmsg.d,docs # E265 block comment should start with '# ' -ignore = E265 +# W504 line break after binary operator +ignore = E265,W504