Resolve the path to ``features.db``.
(project_dir: Path)
| 116 | # --------------------------------------------------------------------------- |
| 117 | |
| 118 | def get_features_db_path(project_dir: Path) -> Path: |
| 119 | """Resolve the path to ``features.db``.""" |
| 120 | return _resolve_path(project_dir, "features.db") |
| 121 | |
| 122 | |
| 123 | def get_assistant_db_path(project_dir: Path) -> Path: |
no test coverage detected