let pre-commit do some work

This commit is contained in:
Ariel Rin
2023-05-03 13:18:05 +10:00
parent 98aa44c070
commit 3b19db2564
26 changed files with 39 additions and 37 deletions

View File

@@ -1,9 +1,8 @@
from django.conf.urls import include
from allianceauth import urls
from django.urls import re_path
from django.urls import include, path
urlpatterns = [
re_path(r'', include(urls)),
path('', include(urls)),
]
handler500 = 'allianceauth.views.Generic500Redirect'