(self)
| 674 | print("{} {}".format(self.name, self.version or "unknown")) |
| 675 | |
| 676 | def print_help(self) -> None: |
| 677 | usage_suffix = "task1 [--task1-opts] ... taskN [--taskN-opts]" |
| 678 | if self.namespace is not None: |
| 679 | usage_suffix = "<subcommand> [--subcommand-opts] ..." |
| 680 | print("Usage: {} [--core-opts] {}".format(self.binary, usage_suffix)) |
| 681 | print("") |
| 682 | print("Core options:") |
| 683 | print("") |
| 684 | self.print_columns(self.initial_context.help_tuples()) |
| 685 | if self.namespace is not None: |
| 686 | self.list_tasks() |
| 687 | |
| 688 | def parse_core_args(self) -> None: |
| 689 | """ |
no test coverage detected