(self)
| 435 | def get_input_names(self): |
| 436 | return [input.name for input in self.inputs] |
| 437 | def get_output_names(self): |
| 438 | return [output.name for output in self.outputs] |
| 439 | |
| 440 | def __repr__(self): |
| 441 | output_names = ", ".join(self.get_output_names()) |
no outgoing calls
no test coverage detected