Foo subcommand of base command.
(self, args)
| 90 | |
| 91 | # subcommand functions for the base command |
| 92 | def base_foo(self, args) -> None: |
| 93 | """Foo subcommand of base command.""" |
| 94 | self.poutput(args.x * args.y) |
| 95 | |
| 96 | def base_bar(self, args) -> None: |
| 97 | """Bar subcommand of base command.""" |