Print the options part of the help.
(self)
| 578 | raise |
| 579 | |
| 580 | def print_options(self) -> None: |
| 581 | """Print the options part of the help.""" |
| 582 | print("\n".join(self.emit_options_help())) |
| 583 | |
| 584 | def emit_options_help(self) -> t.Generator[str, None, None]: |
| 585 | """Yield the lines for the options part of the help.""" |
nothing calls this directly
no test coverage detected