summaryrefslogtreecommitdiff
path: root/tests/null_fk/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/null_fk/tests.py')
-rw-r--r--tests/null_fk/tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/null_fk/tests.py b/tests/null_fk/tests.py
index 26eae6491e..008c0981e6 100644
--- a/tests/null_fk/tests.py
+++ b/tests/null_fk/tests.py
@@ -3,8 +3,9 @@ from __future__ import unicode_literals
from django.db.models import Q
from django.test import TestCase
-from .models import (SystemDetails, Item, PropertyValue, SystemInfo, Forum,
- Post, Comment)
+from .models import (
+ Comment, Forum, Item, Post, PropertyValue, SystemDetails, SystemInfo,
+)
class NullFkTests(TestCase):