formatting storm

This commit is contained in:
Joel Falknau
2024-09-13 23:10:37 +10:00
parent ec5cf08eef
commit a99315ea55
336 changed files with 1347 additions and 1370 deletions

View File

@@ -1,11 +1,12 @@
import os
from celery import Celery
from celery.app import trace
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myauth.settings.local')
from django.conf import settings # noqa
from django.conf import settings
app = Celery('myauth')

View File

@@ -1,6 +1,7 @@
from allianceauth import urls
from django.urls import include, path
from allianceauth import urls
urlpatterns = [
path('', include(urls)),
]