Coverage for website/promotion/apps.py: 100.00%

7 statements  

« prev     ^ index     » next       coverage.py v7.6.7, created at 2025-08-14 10:31 +0000

1"""Contains the appconfig for the promotion module.""" 

2 

3from django.apps import AppConfig 

4from django.utils.translation import gettext_lazy as _ 

5 

6 

7class PromotionConfig(AppConfig): 

8 """Configuration for the promotion module.""" 

9 

10 name = "promotion" 

11 verbose_name = _("Promotion") 

12 

13 def ready(self): 

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

15 from . import signals # noqa: F401