Yield lines with the application description.
(self)
| 670 | print("\n".join(self.emit_description())) |
| 671 | |
| 672 | def emit_description(self) -> t.Generator[str, None, None]: |
| 673 | """Yield lines with the application description.""" |
| 674 | for p in wrap_paragraphs(self.description or self.__doc__ or ""): |
| 675 | yield p |
| 676 | yield "" |
| 677 | |
| 678 | def print_examples(self) -> None: |
| 679 | """Print usage and examples (see `emit_examples()`).""" |
no test coverage detected