From e6d1d1718d6cc9ad13856307bbd5e213e901af68 Mon Sep 17 00:00:00 2001 From: Paul Barker Date: Fri, 13 Nov 2020 19:34:48 +0100 Subject: [PATCH] flake8: Ignore obsolete warning W503 "Line break occurred before a binary operator (W503)" goes against PEP8 and has been superseded by W504. See https://www.flake8rules.com/rules/W503.html. Signed-off-by: Paul Barker Signed-off-by: Jan Kiszka --- .flake8 | 1 + 1 file changed, 1 insertion(+) diff --git a/.flake8 b/.flake8 index 18c1794..cd95589 100644 --- a/.flake8 +++ b/.flake8 @@ -1,2 +1,3 @@ [flake8] select = C,E,F,W +ignore = W503