Return a warning-style string.
(cls, text: str)
| 129 | |
| 130 | @classmethod |
| 131 | def warn(cls, text: str) -> str: |
| 132 | """Return a warning-style string.""" |
| 133 | return cls.colorize(text, Ansi.YELLOW) |
| 134 | |
| 135 | @classmethod |
| 136 | def err(cls, text: str) -> str: |
no test coverage detected