Coverage for backend/django/flowsheetInternals/unitops/config/config_base.py: 100%
6 statements
« prev ^ index » next coverage.py v7.10.7, created at 2026-07-22 05:22 +0000
« prev ^ index » next coverage.py v7.10.7, created at 2026-07-22 05:22 +0000
1from .json_loader import load_unit_op_configuration
2from core.auxiliary.unit_op_object_types import load_unit_op_object_types
5configuration = load_unit_op_configuration()
6Objects = load_unit_op_object_types()
8stream_classes = [
9 key for [key, value] in list(configuration.items())
10 if value.is_stream
11]
12unitop_classes = set(Objects.values).difference(stream_classes + [Objects.Group])