summaryrefslogtreecommitdiff
path: root/examples/modular_subcommands.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2020-09-03 23:04:54 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2020-09-03 23:04:54 -0400
commit1054dda76b87d9f7f77311d8d804c1017b668996 (patch)
tree5d052b6463a0e49f9716094750e2ce3555e31316 /examples/modular_subcommands.py
parente7bf6c193e7adb55986af730eb5bbd9facb182f7 (diff)
downloadcmd2-git-1054dda76b87d9f7f77311d8d804c1017b668996.tar.gz
Fixed type hints in example code1.3.9
Diffstat (limited to 'examples/modular_subcommands.py')
-rw-r--r--examples/modular_subcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/modular_subcommands.py b/examples/modular_subcommands.py
index 4445fde2..c1d499f0 100644
--- a/examples/modular_subcommands.py
+++ b/examples/modular_subcommands.py
@@ -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')