mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
19 lines
503 B
Python
19 lines
503 B
Python
"""Impress Core application"""
|
|
|
|
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
"""Configuration class for the impress core app."""
|
|
|
|
name = "core"
|
|
app_label = "core"
|
|
verbose_name = _("Impress core application")
|
|
|
|
def ready(self):
|
|
"""
|
|
Import signals when the app is ready.
|
|
"""
|
|
# pylint: disable=import-outside-toplevel, unused-import
|
|
from . import signals # noqa: PLC0415
|