summaryrefslogtreecommitdiffstats
path: root/core/views/auth.py
diff options
context:
space:
mode:
authorPhilip Sargent <philip.sargent@gmail.com>2024-12-15 18:54:47 +0000
committerPhilip Sargent <philip.sargent@gmail.com>2024-12-15 18:54:47 +0000
commit30760654b7a3d7a394028fdf357d6f257def1fd5 (patch)
tree0dc128d9896b1f113e2b11c8936ff88531c9b762 /core/views/auth.py
parenteb74940ca81a6e900dec2b7c8df00245c6bb9a71 (diff)
downloadtroggle-30760654b7a3d7a394028fdf357d6f257def1fd5.tar.gz
troggle-30760654b7a3d7a394028fdf357d6f257def1fd5.tar.bz2
troggle-30760654b7a3d7a394028fdf357d6f257def1fd5.zip
import order fixed by ruff
Diffstat (limited to 'core/views/auth.py')
-rw-r--r--core/views/auth.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/views/auth.py b/core/views/auth.py
index 59a6c50..966a100 100644
--- a/core/views/auth.py
+++ b/core/views/auth.py
@@ -1,8 +1,7 @@
from django.conf import settings
-from django.contrib.auth import authenticate
+from django.contrib.auth import authenticate, login, logout
from django.contrib.auth import forms as auth_forms
-from django.contrib.auth import login, logout
from django.contrib.auth.decorators import login_required
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import redirect, render