From 34afcbb4535e71cbf20c9a2b093b2209e811a8b6 Mon Sep 17 00:00:00 2001 From: "Fabio C. Barrionuevo da Luz" Date: Tue, 10 Feb 2015 12:55:33 -0300 Subject: [PATCH] ignore pep8 on django-configurations import in wsgi.py file --- {{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/wsgi.py b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/wsgi.py index eeab6956..4241f1e9 100644 --- a/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/wsgi.py +++ b/{{cookiecutter.repo_name}}/{{cookiecutter.repo_name}}/wsgi.py @@ -25,7 +25,7 @@ os.environ.setdefault("DJANGO_CONFIGURATION", "Production") # This application object is used by any WSGI server configured to use this # file. This includes Django's development server, if the WSGI_APPLICATION # setting points here. -from configurations.wsgi import get_wsgi_application +from configurations.wsgi import get_wsgi_application # noqa application = get_wsgi_application() # Apply WSGI middleware here.