From 3c5162d50e659e966ff7772117ebae11a6d5fc97 Mon Sep 17 00:00:00 2001 From: Yang-Le Wu Date: Mon, 3 Sep 2018 22:54:48 -0400 Subject: [PATCH] Add W503 to flake8 ignore list https://github.com/PyCQA/pycodestyle/issues/498 --- -config/flake8 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/-config/flake8 b/-config/flake8 index d46e00e..a14b50b 100644 --- a/-config/flake8 +++ b/-config/flake8 @@ -18,4 +18,5 @@ # F841: local variable name is assigned to but never used # W293: blank line contains whitespace # W391: line at end of file -ignore = C901,E201,E202,E221,E222,E241,E251,E265,E303,E402,E501,E731,E741,E742,E743,F401,F841,W293,W391 +# W503: line break before binary operator +ignore = C901,E201,E202,E221,E222,E241,E251,E265,E303,E402,E501,E731,E741,E742,E743,F401,F841,W293,W391,W503