diff options
Diffstat (limited to 'tests/settings_tests/tests.py')
| -rw-r--r-- | tests/settings_tests/tests.py | 8 |
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 |
