From fc3e3079fa7158dbf84b058022797cd5e89c4d93 Mon Sep 17 00:00:00 2001 From: Ryan P Kilby Date: Tue, 22 Oct 2019 10:31:23 -0700 Subject: [PATCH] Ignore pycodestyle W504 For now, conform to W503, however W504 is the preferred style and we may want change to it in the future. --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index c021fdde0..81da18b1c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ addopts=--tb=short --strict -ra testspath = tests [flake8] -ignore = E501 +ignore = E501,W504 banned-modules = json = use from rest_framework.utils import json! [isort]