summaryrefslogtreecommitdiff
path: root/tests/django_test_app/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/django_test_app/__init__.py')
-rw-r--r--tests/django_test_app/__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/django_test_app/__init__.py b/tests/django_test_app/__init__.py
index 4506810..908f97e 100644
--- a/tests/django_test_app/__init__.py
+++ b/tests/django_test_app/__init__.py
@@ -3,9 +3,8 @@
# This code is distributed under the two-clause BSD License.
try: # pragma: no cover
- import django
- from django.conf import settings
+ import django # noqa
+ from django.conf import settings # noqa
django_loaded = True
except ImportError: # pragma: no cover
django_loaded = False
-