Resolve the path to ``assistant.db``.
(project_dir: Path)
| 121 | |
| 122 | |
| 123 | def get_assistant_db_path(project_dir: Path) -> Path: |
| 124 | """Resolve the path to ``assistant.db``.""" |
| 125 | return _resolve_path(project_dir, "assistant.db") |
| 126 | |
| 127 | |
| 128 | def get_agent_lock_path(project_dir: Path) -> Path: |
no test coverage detected