MCPcopy Index your code
hub / github.com/Integuru-AI/Integuru / update_node

Method update_node

integuru/models/DAGManager.py:24–31  ·  view source on GitHub ↗
(
        self, 
        node_id: str, 
        **attributes: Optional[List[str]])

Source from the content-addressed store, hash-verified

22 return node_id
23
24 def update_node(
25 self,
26 node_id: str,
27 **attributes: Optional[List[str]]):
28
29 for attr, value in attributes.items():
30 if value is not None:
31 self.graph.nodes[node_id][attr] = value
32
33 def detect_cycles(self):
34 """

Calls

no outgoing calls

Tested by

no test coverage detected