Remove a node from inputs by the given node id. Args: node_id(int): the given node id.
(self, node_id)
| 5238 | self.node.clear_inputs() |
| 5239 | |
| 5240 | def remove_input_by_id(self, node_id): |
| 5241 | """ |
| 5242 | Remove a node from inputs by the given node id. |
| 5243 | |
| 5244 | Args: |
| 5245 | node_id(int): the given node id. |
| 5246 | """ |
| 5247 | self.node.remove_input(node_id) |
| 5248 | |
| 5249 | def remove_input(self, node): |
| 5250 | """ |
nothing calls this directly
no test coverage detected