(self, *args, **kwargs)
| 1168 | |
| 1169 | class SayApp(cmd2.Cmd): |
| 1170 | def __init__(self, *args, **kwargs) -> None: |
| 1171 | super().__init__(*args, **kwargs) |
| 1172 | |
| 1173 | def do_say(self, arg) -> None: |
| 1174 | self.poutput(arg) |
no outgoing calls
no test coverage detected