summaryrefslogtreecommitdiff
path: root/tests/django_test_app/__init__.py
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2019-08-20 22:55:10 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2019-08-24 15:13:09 +0200
commita7c2b75d48587fce826613efced163272b11e354 (patch)
treec022cf3401dce1a1ab98394c35ff4c85fd980811 /tests/django_test_app/__init__.py
parent36f5b30d2fb6ad535b322a875c8bfb297e97aacc (diff)
downloadsemantic-version-a7c2b75d48587fce826613efced163272b11e354.tar.gz
Lint test code.
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
-