summaryrefslogtreecommitdiff
path: root/tests/sites_framework/tests.py
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/sites_framework/tests.py
parent388d986b8a6bb1363dab9f53ea435dff4dfe92cb (diff)
Sorted imports with isort; refs #23860.
Diffstat (limited to 'tests/sites_framework/tests.py')
-rw-r--r--tests/sites_framework/tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/sites_framework/tests.py b/tests/sites_framework/tests.py
index 97d01e1d57..911286adc1 100644
--- a/tests/sites_framework/tests.py
+++ b/tests/sites_framework/tests.py
@@ -6,8 +6,9 @@ from django.core import checks
from django.db import models
from django.test import TestCase
-from .models import (SyndicatedArticle, ExclusiveArticle, CustomArticle,
- AbstractArticle)
+from .models import (
+ AbstractArticle, CustomArticle, ExclusiveArticle, SyndicatedArticle,
+)
class SitesFrameworkTestCase(TestCase):