Return an error-style string.
(cls, text: str)
| 134 | |
| 135 | @classmethod |
| 136 | def err(cls, text: str) -> str: |
| 137 | """Return an error-style string.""" |
| 138 | return cls.colorize(text, Ansi.RED) |
| 139 | |
| 140 | @classmethod |
| 141 | def info(cls, text: str) -> str: |
no test coverage detected