Print the application description.
(self)
| 666 | return "\n".join(c.class_config_rst_doc() for c in self._classes_inc_parents()) |
| 667 | |
| 668 | def print_description(self) -> None: |
| 669 | """Print the application description.""" |
| 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.""" |
nothing calls this directly
no test coverage detected