from __future__ import annotations

from pathlib import Path


def kill_switch_active(path: str | Path) -> bool:
    return Path(path).exists()
