Resolve the path to ``.agent.lock``.
(project_dir: Path)
| 126 | |
| 127 | |
| 128 | def get_agent_lock_path(project_dir: Path) -> Path: |
| 129 | """Resolve the path to ``.agent.lock``.""" |
| 130 | return _resolve_path(project_dir, ".agent.lock") |
| 131 | |
| 132 | |
| 133 | def get_devserver_lock_path(project_dir: Path) -> Path: |
no test coverage detected