diff --git a/qualibrate/qualibration_graph.py b/qualibrate/qualibration_graph.py index e9820b6..d0309cf 100644 --- a/qualibrate/qualibration_graph.py +++ b/qualibrate/qualibration_graph.py @@ -288,6 +288,14 @@ def completed_count(self) -> int: ) ) + @property + def active_node_name(self) -> Optional[str]: + return ( + self._orchestrator.active_node_name + if self._orchestrator is not None + else None + ) + def _get_all_nodes_parameters( self, nodes_parameters: Mapping[str, Any] ) -> Mapping[str, Any]: