From 31940142533b2ccfde5aaac905b2f6145f84d2dc Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 22 Sep 2019 10:14:57 +0200 Subject: [PATCH] Flake8: ignore W504 line break after binary operator --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 79f906a..c98e760 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,4 +4,4 @@ description-file = README.md [flake8] max-line-length = 120 exclude=management,scripts,docs,static -ignore=E121,E122,E124,E126,E226 +ignore=E121,E122,E124,E126,E226,W504