From a7b6393d6f0f3f6a096a3872e55797365138f9f0 Mon Sep 17 00:00:00 2001 From: Tobias Gruetzmacher Date: Sun, 30 Jun 2019 19:50:28 +0200 Subject: [PATCH] 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 ;) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2356ffc74..7b47a4793 100644 --- a/tox.ini +++ b/tox.ini @@ -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