Return all resolved that do not exist.
(self)
| 14 | metadata: Path |
| 15 | |
| 16 | def non_existing(self) -> list[Path]: |
| 17 | """Return all resolved that do not exist.""" |
| 18 | return [ |
| 19 | path for path in [self.chunks, self.bm25_index, self.semantic_index, self.metadata] if not path.exists() |
| 20 | ] |
| 21 | |
| 22 | @classmethod |
| 23 | def from_path(cls: type[PersistencePath], path: Path) -> PersistencePath: |
no outgoing calls
no test coverage detected