(self, *args, **kwargs)
| 3591 | # Verify get_help_topics() filters out hidden commands |
| 3592 | class TestApp(cmd2.Cmd): |
| 3593 | def __init__(self, *args, **kwargs) -> None: |
| 3594 | super().__init__(*args, **kwargs) |
| 3595 | |
| 3596 | def do_my_cmd(self, args) -> None: |
| 3597 | pass |