(self)
| 438 | return [output.name for output in self.outputs] |
| 439 | |
| 440 | def __repr__(self): |
| 441 | output_names = ", ".join(self.get_output_names()) |
| 442 | if output_names != "": output_names = " -> " + output_names |
| 443 | function_string = self.name + "(" + ", ".join(self.get_input_names()) + ")" + output_names |
| 444 | if self.owner is None: return function_string |
| 445 | else: return self.owner + "." + function_string |
| 446 | |
| 447 | |
| 448 | class TypeDocumentation: |
nothing calls this directly
no test coverage detected