summaryrefslogtreecommitdiff
path: root/tests/proxy_model_inheritance/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/proxy_model_inheritance/tests.py')
-rw-r--r--tests/proxy_model_inheritance/tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/proxy_model_inheritance/tests.py b/tests/proxy_model_inheritance/tests.py
index 3678466e8c..b0af0040f9 100644
--- a/tests/proxy_model_inheritance/tests.py
+++ b/tests/proxy_model_inheritance/tests.py
@@ -7,8 +7,9 @@ from django.test import TestCase, TransactionTestCase
from django.test.utils import extend_sys_path
from django.utils._os import upath
-from .models import (ConcreteModel, ConcreteModelSubclass,
- ConcreteModelSubclassProxy)
+from .models import (
+ ConcreteModel, ConcreteModelSubclass, ConcreteModelSubclassProxy,
+)
class ProxyModelInheritanceTests(TransactionTestCase):