File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ def graph(self) -> nx.DiGraph:
6969 """DAG graph."""
7070 return self ._graph
7171
72- def node_to_operation (
72+ def _node_to_operation (
7373 self , node : str , restart : bool = False , stop : bool = False
7474 ) -> DagOperation :
7575 # ? Restart operations are now stored in collections.operations they can be
@@ -159,7 +159,7 @@ def topological_sort(
159159 """
160160 return list (
161161 map (
162- lambda node : self .node_to_operation (node , restart = restart , stop = stop ),
162+ lambda node : self ._node_to_operation (node , restart = restart , stop = stop ),
163163 self .topological_sort_key (nodes ),
164164 )
165165 )
@@ -241,7 +241,7 @@ def get_operation_descendants(
241241 nodes_filtered = filter (lambda node : node not in nodes , nodes_set )
242242 return list (
243243 map (
244- lambda node : self .node_to_operation (node , restart = restart , stop = stop ),
244+ lambda node : self ._node_to_operation (node , restart = restart , stop = stop ),
245245 nodes_filtered ,
246246 )
247247 )
You can’t perform that action at this time.
0 commit comments