(self)
| 559 | self.method = method |
| 560 | |
| 561 | def get_function_params(self) -> List[Union[Any, Parameter]]: |
| 562 | if self.method: |
| 563 | return self.function.params[1:] |
| 564 | else: |
| 565 | return self.function.params |
| 566 | |
| 567 | def get_args(self) -> str: |
| 568 | output_args = [] |
no outgoing calls
no test coverage detected