summaryrefslogtreecommitdiff
path: root/django/contrib/sitemaps/tests/urls/http.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 /django/contrib/sitemaps/tests/urls/http.py
parent388d986b8a6bb1363dab9f53ea435dff4dfe92cb (diff)
downloaddjango-0ed7d155635da9f79d4dd67e4889087d3673c6da.tar.gz
Sorted imports with isort; refs #23860.
Diffstat (limited to 'django/contrib/sitemaps/tests/urls/http.py')
-rw-r--r--django/contrib/sitemaps/tests/urls/http.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/contrib/sitemaps/tests/urls/http.py b/django/contrib/sitemaps/tests/urls/http.py
index c7bcc0fac0..052aec17c1 100644
--- a/django/contrib/sitemaps/tests/urls/http.py
+++ b/django/contrib/sitemaps/tests/urls/http.py
@@ -1,13 +1,13 @@
from datetime import date, datetime
+
from django.conf.urls import url
from django.conf.urls.i18n import i18n_patterns
-from django.contrib.sitemaps import Sitemap, GenericSitemap, views
+from django.contrib.sitemaps import GenericSitemap, Sitemap, views
+from django.contrib.sitemaps.tests.base import I18nTestModel, TestModel
from django.http import HttpResponse
from django.utils import timezone
from django.views.decorators.cache import cache_page
-from django.contrib.sitemaps.tests.base import I18nTestModel, TestModel
-
class SimpleSitemap(Sitemap):
changefreq = "never"