summaryrefslogtreecommitdiff
path: root/tests/check_framework
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-06-01 13:26:37 -0400
committerTim Graham <timograham@gmail.com>2017-06-01 13:30:08 -0400
commit3cd9a4b1ea47614693619f56b4ee0d37244132a5 (patch)
tree39220842a633f5272bab6838e36abaa9834a1ba4 /tests/check_framework
parent2134090e798bbc2d11c57c11f7e1c05dbcf1e39f (diff)
[1.11.x] Sorted imports per isort 4.2.9.
Backport of cde31daf8815e05b4b86b857b49fb0e31e1f0a38 from master
Diffstat (limited to 'tests/check_framework')
-rw-r--r--tests/check_framework/tests_1_10_compatibility.py5
-rw-r--r--tests/check_framework/tests_1_8_compatibility.py5
2 files changed, 6 insertions, 4 deletions
diff --git a/tests/check_framework/tests_1_10_compatibility.py b/tests/check_framework/tests_1_10_compatibility.py
index 388ac1b024..e085f68881 100644
--- a/tests/check_framework/tests_1_10_compatibility.py
+++ b/tests/check_framework/tests_1_10_compatibility.py
@@ -1,5 +1,6 @@
-from django.core.checks.compatibility.django_1_10 import \
- check_duplicate_middleware_settings
+from django.core.checks.compatibility.django_1_10 import (
+ check_duplicate_middleware_settings,
+)
from django.test import SimpleTestCase
from django.test.utils import override_settings
diff --git a/tests/check_framework/tests_1_8_compatibility.py b/tests/check_framework/tests_1_8_compatibility.py
index d8601b1064..c3865643b2 100644
--- a/tests/check_framework/tests_1_8_compatibility.py
+++ b/tests/check_framework/tests_1_8_compatibility.py
@@ -1,5 +1,6 @@
-from django.core.checks.compatibility.django_1_8_0 import \
- check_duplicate_template_settings
+from django.core.checks.compatibility.django_1_8_0 import (
+ check_duplicate_template_settings,
+)
from django.test import SimpleTestCase
from django.test.utils import override_settings