ptvp35 suffix

This commit is contained in:
AF 2023-08-24 19:23:37 +00:00
parent acbccb4f28
commit 110edfefc0

View File

@ -7,7 +7,7 @@ from .db import AbstractDbFactory, AbstractDbManager
class Ptvp35:
def from_path(self, path: Path) -> AbstractDbManager:
return DbManager(path, kvfactory=KVJson())
return DbManager(path.with_suffix(path.suffix + "ptvp35"), kvfactory=KVJson())
DBF: AbstractDbFactory = Ptvp35()