Print the subcommand part of the help.
(self)
| 597 | yield "" |
| 598 | |
| 599 | def print_subcommands(self) -> None: |
| 600 | """Print the subcommand part of the help.""" |
| 601 | print("\n".join(self.emit_subcommands_help())) |
| 602 | |
| 603 | def emit_subcommands_help(self) -> t.Generator[str, None, None]: |
| 604 | """Yield the lines for the subcommand part of the help.""" |
nothing calls this directly
no test coverage detected