(mods: Iterable[str])
| 484 | |
| 485 | |
| 486 | def is_managed_path(path: Path) -> bool: |
| 487 | return str(path) in set(load_state().get("managed_paths", [])) |
| 488 | |
| 489 | |
| 490 | def safe_notify(message: str) -> None: |
| 491 | if shutil.which("termux-toast"): |
| 492 | run_cmd(["termux-toast", message], check=False, capture=True) |
no test coverage detected