(ok: bool, label: str, detail: str = "")
| 38 | |
| 39 | |
| 40 | def status(ok: bool, label: str, detail: str = "") -> None: |
| 41 | mark = "OK" if ok else "WARN" |
| 42 | suffix = f" - {detail}" if detail else "" |
| 43 | print(f"[{mark}] {label}{suffix}") |
| 44 | |
| 45 | |
| 46 | def module_available(name: str) -> bool: |
no outgoing calls
no test coverage detected