diff options
author | Tim Graham <timograham@gmail.com> | 2016-04-03 20:37:32 -0400 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-04-04 17:14:26 -0400 |
commit | 2cd2d188516475ddf256e6267cd82c495fb5c430 (patch) | |
tree | 1a7c3c167c1576923c7c4f5544495face5bd7327 /setup.cfg | |
parent | d356bb653f4d90ae9809e5a051791ded39010c38 (diff) | |
download | django-2cd2d188516475ddf256e6267cd82c495fb5c430.tar.gz |
Fixed W503 flake8 warnings.
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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,W503,W601 +ignore = E128,E402,W601 max-line-length = 119 [isort] |