summaryrefslogtreecommitdiff
path: root/tests/apps
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2013-12-27 21:06:28 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2013-12-27 21:06:28 +0100
commit40b876763539e1700826ebffcd9402043054b13b (patch)
tree77ccc11028405c1662c6251455765e1e357f3ded /tests/apps
parent85270ef3f5bf96b556e697bc5a46bf925ec4be21 (diff)
Fixed a couple flake8 warnings.
Diffstat (limited to 'tests/apps')
-rw-r--r--tests/apps/apps.py2
-rw-r--r--tests/apps/tests.py1
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/apps/apps.py b/tests/apps/apps.py
index 2012a34fd4..22c8f3062f 100644
--- a/tests/apps/apps.py
+++ b/tests/apps/apps.py
@@ -23,5 +23,3 @@ class NotAConfig(object):
class NoSuchApp(AppConfig):
name = 'there is no such app'
-
-
diff --git a/tests/apps/tests.py b/tests/apps/tests.py
index a516b6e662..f7de95ebe3 100644
--- a/tests/apps/tests.py
+++ b/tests/apps/tests.py
@@ -2,7 +2,6 @@ from __future__ import absolute_import, unicode_literals
from django.apps import apps
from django.apps.registry import Apps
-from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
from django.db import models
from django.test import TestCase, override_settings