From 2c99c0d9e7ddea1a93e97e3198aea01beca7c5d5 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Tue, 4 Aug 2020 14:15:22 -0400 Subject: Removed obsolete argument --- examples/modular_subcommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/modular_subcommands.py b/examples/modular_subcommands.py index e1bc6b7b..bf4a08ae 100644 --- a/examples/modular_subcommands.py +++ b/examples/modular_subcommands.py @@ -91,7 +91,7 @@ class ExampleApp(cmd2.Cmd): self.poutput('Vegetables unloaded') cut_parser = cmd2.Cmd2ArgumentParser('cut') - cut_subparsers = cut_parser.add_subparsers(title='item', help='item to cut', unloadable=True) + cut_subparsers = cut_parser.add_subparsers(title='item', help='item to cut') @with_argparser(cut_parser) def do_cut(self, ns: argparse.Namespace): -- cgit v1.2.1