| 294 | |
| 295 | |
| 296 | class HelpCommand(Command): |
| 297 | name = "help" |
| 298 | help = "show this command" |
| 299 | add_help = False |
| 300 | allow_unknown_arguments = True |
| 301 | |
| 302 | def run(self, args: argparse.Namespace) -> None: |
| 303 | self.root_parser.print_help() |
| 304 | |
| 305 | |
| 306 | class GenShortcutsCommand(Command): |