(self, *args, **kwargs)
| 719 | """Class for testing usage of `as_subcommand_to` decorator directly in a Cmd2 subclass.""" |
| 720 | |
| 721 | def __init__(self, *args, **kwargs) -> None: |
| 722 | super().__init__(*args, **kwargs) |
| 723 | |
| 724 | cut_parser = cmd2.Cmd2ArgumentParser() |
| 725 | cut_subparsers = cut_parser.add_subparsers(title="item", help="item to cut") |