Wrapper around mypy.util for fancy formatting.
(message: str, **kwargs: Any)
| 77 | |
| 78 | |
| 79 | def _style(message: str, **kwargs: Any) -> str: |
| 80 | """Wrapper around mypy.util for fancy formatting.""" |
| 81 | kwargs.setdefault("color", "none") |
| 82 | return _formatter.style(message, **kwargs) |
| 83 | |
| 84 | |
| 85 | def _truncate(message: str, length: int) -> str: |
no test coverage detected
searching dependent graphs…