summaryrefslogtreecommitdiff
path: root/tests/settings_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-28 07:35:27 -0500
committerTim Graham <timograham@gmail.com>2015-02-06 08:16:28 -0500
commit0ed7d155635da9f79d4dd67e4889087d3673c6da (patch)
treecf5c59b563f01774f32e20b3af8cb24a387fdc4d /tests/settings_tests
parent388d986b8a6bb1363dab9f53ea435dff4dfe92cb (diff)
downloaddjango-0ed7d155635da9f79d4dd67e4889087d3673c6da.tar.gz
Sorted imports with isort; refs #23860.
Diffstat (limited to 'tests/settings_tests')
-rw-r--r--tests/settings_tests/tests.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/settings_tests/tests.py b/tests/settings_tests/tests.py
index 8d39d6c1b1..6a444d56a9 100644
--- a/tests/settings_tests/tests.py
+++ b/tests/settings_tests/tests.py
@@ -1,14 +1,16 @@
import os
import sys
-from types import ModuleType
import unittest
import warnings
+from types import ModuleType
from django.conf import LazySettings, Settings, settings
from django.core.exceptions import ImproperlyConfigured
from django.http import HttpRequest
-from django.test import (SimpleTestCase, TransactionTestCase, TestCase,
- modify_settings, override_settings, signals)
+from django.test import (
+ SimpleTestCase, TestCase, TransactionTestCase, modify_settings,
+ override_settings, signals,
+)
from django.utils import six
from django.utils.encoding import force_text