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,10 +1,10 @@
from . import views, totp, U2F, TrustedDevice, helpers, FIDO2, Email
try:
from django.urls import re_path as url
except:
from django.conf.urls import url
from . import FIDO2, U2F, Email, TrustedDevice, helpers, totp, views
urlpatterns = [
url(r"totp/start/", totp.start, name="start_new_otop"),
url(r"totp/getToken", totp.getToken, name="get_new_otop"),