mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-07 23:56:23 +01:00
formatting storm
This commit is contained in:
@@ -5,7 +5,7 @@ from celery import Celery
|
||||
# set the default Django settings module for the 'celery' program.
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings')
|
||||
|
||||
from django.conf import settings # noqa
|
||||
from django.conf import settings
|
||||
|
||||
app = Celery('devauth')
|
||||
|
||||
|
||||
@@ -4,12 +4,12 @@ Alliance Auth Test Suite Django settings
|
||||
Testing all services and plug-in apps
|
||||
"""
|
||||
|
||||
from allianceauth.project_template.project_name.settings.base import *
|
||||
from allianceauth.project_template.project_name.settings.base import * # noqa:F403
|
||||
|
||||
# Celery configuration
|
||||
CELERY_ALWAYS_EAGER = True # Forces celery to run locally for testing
|
||||
|
||||
INSTALLED_APPS += [
|
||||
INSTALLED_APPS += [ # noqa:F405
|
||||
"allianceauth.eveonline.autogroups",
|
||||
"allianceauth.hrapplications",
|
||||
"allianceauth.timerboard",
|
||||
|
||||
@@ -4,7 +4,7 @@ Alliance Auth Test Suite Django settings
|
||||
Testing core packages only
|
||||
"""
|
||||
|
||||
from allianceauth.project_template.project_name.settings.base import *
|
||||
from allianceauth.project_template.project_name.settings.base import * # noqa:F403
|
||||
|
||||
# Celery configuration
|
||||
CELERY_ALWAYS_EAGER = True # Forces celery to run locally for testing
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import allianceauth.urls
|
||||
from django.urls import path
|
||||
|
||||
import allianceauth.urls
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = allianceauth.urls.urlpatterns
|
||||
|
||||
Reference in New Issue
Block a user