(msg: str)
| 839 | |
| 840 | |
| 841 | def _print_error(msg: str) -> None: |
| 842 | import click as _click |
| 843 | |
| 844 | _typer.echo(_click.style(f" ERROR: {msg}", fg="red"), err=True) |
| 845 | |
| 846 | |
| 847 | def _print_doctor_result(result: DoctorCheckResult, *, verbose: bool = False) -> None: |