Print the help for each Configurable class in self.classes. If classes=False (the default), only flags and aliases are printed.
(self, classes: bool = False)
| 627 | yield "" |
| 628 | |
| 629 | def print_help(self, classes: bool = False) -> None: |
| 630 | """Print the help for each Configurable class in self.classes. |
| 631 | |
| 632 | If classes=False (the default), only flags and aliases are printed. |
| 633 | """ |
| 634 | print("\n".join(self.emit_help(classes=classes))) |
| 635 | |
| 636 | def emit_help(self, classes: bool = False) -> t.Generator[str, None, None]: |
| 637 | """Yield the help-lines for each Configurable class in self.classes. |
no test coverage detected