(api_client, title: str)
| 63 | |
| 64 | |
| 65 | def _db_path_for(api_client, title: str) -> Path: |
| 66 | result = api_client.command("sessions.getDbPath", {"projectTitle": title}) |
| 67 | return Path(result["path"]) |
| 68 | |
| 69 | |
| 70 | def _safe_unlink(path: Path) -> None: |
no test coverage detected