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

1from django.apps import AppConfig 

2from django.utils.translation import gettext_lazy as _ 

3 

4 

5class MailinglistsConfig(AppConfig): 

6 """Appconfig for mailinglist app.""" 

7 

8 name = "mailinglists" 

9 verbose_name = _("Mailing lists") 

10 

11 def ready(self): 

12 """Import the signals when the app is ready.""" 

13 from . import signals # noqa: F401