(self)
| 3610 | """Example cmd2 application where we can specify an exit code when existing.""" |
| 3611 | |
| 3612 | def __init__(self) -> None: |
| 3613 | super().__init__(allow_cli_args=False) |
| 3614 | |
| 3615 | @cmd2.with_argument_list |
| 3616 | def do_exit(self, arg_list) -> bool: |