From a6f8a3508b6ea4e72003b27583f2286e17e56938 Mon Sep 17 00:00:00 2001 From: Eric Lin Date: Thu, 3 Sep 2020 12:58:18 -0400 Subject: fixes the type hint in example --- examples/modular_subcommands.py | 4 ++-- 1 file 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') -- cgit v1.2.1