From e04af40140fb4c21905467672bec089277dd4192 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 18 Feb 2015 14:45:31 +0100 Subject: flake8: Ignore W503. --- .flake8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.flake8') diff --git a/.flake8 b/.flake8 index aa38c6f62..5233b8c31 100644 --- a/.flake8 +++ b/.flake8 @@ -7,5 +7,6 @@ # F401: Unused import # E402: module level import not at top of file # E266: too many leading '#' for block comment -ignore=E265,E501,F841,F401,E402,E266 +# W503: line break before binary operator +ignore=E265,E501,F841,F401,E402,E266,W503 max_complexity = 12 -- cgit v1.2.3-54-g00ecf