MCPcopy Create free account
hub / github.com/Integuru-AI/Integuru / __str__

Method __str__

integuru/models/DAGManager.py:61–66  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

59 self.graph.add_edge(from_node_id, to_node_id)
60
61 def __str__(self):
62 nodes_info = []
63 for node_id in self.graph.nodes:
64 attrs = self.graph.nodes[node_id]
65 nodes_info.append(f"{node_id}: {attrs}")
66 return "\n".join(nodes_info)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected