angrybeanie_wagtail/env/lib/python3.12/site-packages/django_tasks/apps.py

14 lines
285 B
Python
Raw Normal View History

2025-07-25 21:32:16 +10:00
from django.apps import AppConfig
from django.core import checks
from django_tasks.checks import check_tasks
class TasksAppConfig(AppConfig):
name = "django_tasks"
def ready(self) -> None:
from . import signal_handlers # noqa
checks.register(check_tasks)