diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/modular_subcommands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/modular_subcommands.py b/examples/modular_subcommands.py index 94959349..c3c62cf2 100644 --- a/examples/modular_subcommands.py +++ b/examples/modular_subcommands.py @@ -38,7 +38,7 @@ class LoadableVegetables(CommandSet): def __init__(self): super().__init__() - def do_arugula(self, _: cmd2.Statement): + def do_arugula(self, _: argparse.Namespace): self._cmd.poutput('Arugula') bokchoy_description = "Cut some bokchoy" @@ -46,7 +46,7 @@ class LoadableVegetables(CommandSet): bokchoy_parser.add_argument('style', choices=['quartered', 'diced']) @cmd2.as_subcommand_to('cut', 'bokchoy', bokchoy_parser, help=bokchoy_description.lower()) - def cut_bokchoy(self, _: cmd2.Statement): + def cut_bokchoy(self, _: argparse.Namespace): self._cmd.poutput('Bok Choy') |