Loads an existing database from a file.
(path: Path)
| 60 | |
| 61 | |
| 62 | def load_existing_database(path: Path) -> Database: |
| 63 | """ |
| 64 | Loads an existing database from a file. |
| 65 | """ |
| 66 | return Database.from_file(path) |
| 67 | |
| 68 | |
| 69 | def load_or_create_database(workdir: Path) -> Database: |
no test coverage detected