From 5aeffc05350b5bea06cf81fac74875a752757a9a Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Wed, 24 Oct 2018 09:13:13 +0200 Subject: [PATCH] [2.1.x] Ignored flake8 W504 warnings. W504 is mutually exclusive with W503 that we follow. Backport of 58d1e9aa8ab505912389e7cd019a6f21785ad4bf from master. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 5b37a54c11a..ce026e6f49c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh [flake8] exclude = build,.git,.tox,./django/utils/six.py,./django/conf/app_template/*,./tests/.env -ignore = W601 +ignore = W504,W601 max-line-length = 119 [isort]