Coverage for website/moneybirdsynchronization/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 

2 

3 

4class MoneybirdsynchronizationConfig(AppConfig): 

5 default_auto_field = "django.db.models.BigAutoField" 

6 name = "moneybirdsynchronization" 

7 verbose_name = "Moneybird synchronization" 

8 

9 def ready(self): 

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

11 from . import signals # noqa: F401