Dummy variable prevents this from being autoloaded in other tests
(self, dummy)
| 967 | |
| 968 | class CommandSetWithPathComplete(cmd2.CommandSet): |
| 969 | def __init__(self, dummy) -> None: |
| 970 | """Dummy variable prevents this from being autoloaded in other tests""" |
| 971 | super().__init__() |
| 972 | |
| 973 | parser = cmd2.Cmd2ArgumentParser() |
| 974 | parser.add_argument("path", nargs="+", help="paths", completer=cmd2.Cmd.path_complete) |