summaryrefslogtreecommitdiffstats
path: root/core/middleware.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2023-01-19 18:35:56 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2023-01-19 18:35:56 +0000
commitbe9fcc522a0e8dd95167236b30deb936ca6a4721 (patch)
treee1f6c7a78e49b8ee28315b188148f35a02053996 /core/middleware.py
parent939d3970aad3d1e5cf0de4e7ed09bed78e0404bb (diff)
downloadtroggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.gz
troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.tar.bz2
troggle-be9fcc522a0e8dd95167236b30deb936ca6a4721.zip
sort imports using isort. tested.
Diffstat (limited to 'core/middleware.py')
-rw-r--r--core/middleware.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/middleware.py b/core/middleware.py
index 06c159a..c535291 100644
--- a/core/middleware.py
+++ b/core/middleware.py
@@ -1,6 +1,7 @@
-from django.conf import settings
from django import http
-from django.urls import reverse, resolve,Resolver404
+from django.conf import settings
+from django.urls import Resolver404, resolve, reverse
+
"""Non-standard django middleware is loaded from this file.
"""