(self)
| 192 | raise TypeError('node must be instance of ExecutionNode!') |
| 193 | |
| 194 | def get_init_node(self): |
| 195 | return self.nodes[self.init_node] |
| 196 | |
| 197 | def add_node(self,node:ExecutionNode): |
| 198 | if isinstance(node,ExecutionNode): |
nothing calls this directly
no outgoing calls
no test coverage detected