Coverage for website/mailinglists/apps.py: 100.00%
7 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from django.apps import AppConfig
2from django.utils.translation import gettext_lazy as _
5class MailinglistsConfig(AppConfig):
6 """Appconfig for mailinglist app."""
8 name = "mailinglists"
9 verbose_name = _("Mailing lists")
11 def ready(self):
12 """Import the signals when the app is ready."""
13 from . import signals # noqa: F401