sort imports (isort)

This commit is contained in:
Tobias Bengfort
2021-06-23 08:35:55 +02:00
parent 0945561136
commit 174dba2878
12 changed files with 77 additions and 71 deletions

View File

@@ -1,8 +1,9 @@
from django.shortcuts import render
from django.http import HttpResponseRedirect
from django.urls import reverse
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.models import User
from django.http import HttpResponseRedirect
from django.shortcuts import render
from django.urls import reverse
from mfa.helpers import has_mfa

View File

@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, re_path, include
from . import views, auth
from django.urls import include, path, re_path
from . import auth, views
urlpatterns = [
path("admin/", admin.site.urls),