(self, store: dict[str, Any])
| 45 | return state |
| 46 | |
| 47 | def attach(self, store: dict[str, Any]) -> None: |
| 48 | store[STATE_KEY] = self |
| 49 | |
| 50 | def set_node_output(self, node_id: str, output: dict[str, Any]) -> None: |
| 51 | self.node_outputs[str(node_id)] = dict(output) |
no outgoing calls
no test coverage detected