Coverage for backend/django/flowsheetInternals/unitops/apps.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v7.10.7, created at 2026-07-22 05:22 +0000

1from django.apps import AppConfig 

2 

3 

4class UnitopsConfig(AppConfig): 

5 name = 'flowsheetInternals.unitops' 

6 label = 'flowsheetInternals_unitops' 

7 

8 def ready(self) -> None: 

9 """Connect the scoped flowsheet history recorder after app loading.""" 

10 from .services.edit_operations import checks # noqa: F401 

11 from .services.edit_operations.recorder import connect_history_signals 

12 

13 connect_history_signals()