Foo subcommand of base command
(self, args)
| 308 | |
| 309 | # subcommand functions for the base command |
| 310 | def base_foo(self, args) -> None: |
| 311 | """Foo subcommand of base command""" |
| 312 | self.poutput(args.x * args.y) |
| 313 | |
| 314 | def base_bar(self, args) -> None: |
| 315 | """Bar subcommand of base command""" |