From d4b8ff847b47235d7daa648eaaf0839dbf8532cf Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Fri, 23 Apr 2021 22:08:15 +0200 Subject: [PATCH] Disable check for W504 This is mutually exclusive with W503, but it seems to check for both. So no matter where the linebreak is, the linter says its wrong. This fixes this behavior and allows to use at least one option. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index a703cf9..2259339 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,4 +2,4 @@ universal=1 [flake8] max-line-length=120 -ignore: E301, E302, E401, E261, E265, E226, F401 +ignore: E301, E302, E401, E261, E265, E226, F401, W504