summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-04-03 21:41:37 -0400
committerTim Graham <timograham@gmail.com>2016-04-04 17:14:27 -0400
commit6448873197fa4e3df3f5f03201538dc57d7643d6 (patch)
tree0b09458bfee7ac89a2a76c280a00def497b77856 /setup.cfg
parent2cd2d188516475ddf256e6267cd82c495fb5c430 (diff)
downloaddjango-6448873197fa4e3df3f5f03201538dc57d7643d6.tar.gz
Fixed E402 flake8 warnings.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 580b41c349..271b443b4f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@ install-script = scripts/rpm-install.sh
[flake8]
exclude = build,.git,./django/utils/lru_cache.py,./django/utils/six.py,./django/conf/app_template/*,./django/dispatch/weakref_backports.py,./tests/.env,./xmlrunner,tests/view_tests/tests/py3_test_debug.py,tests/template_tests/annotated_tag_function.py
-ignore = E128,E402,W601
+ignore = E128,W601
max-line-length = 119
[isort]