Display plain text.
(self, text: str, style: str | None = None)
| 55 | |
| 56 | # ===== Delegate to base display ===== |
| 57 | def text(self, text: str, style: str | None = None) -> None: |
| 58 | """Display plain text.""" |
| 59 | return self.base.text(text, style) |
| 60 | |
| 61 | def heading(self, text: str, style: str | None = None) -> None: |
| 62 | """Display a heading.""" |
no outgoing calls
no test coverage detected