This commit is contained in:
evilchili 2025-10-18 15:42:32 -07:00
parent 972f6e57dd
commit 18621170a3

View File

@ -92,7 +92,7 @@ class GrungDB(TinyDB):
_tables = {}
def __init__(self, path: Path, *args, **kwargs):
self.path = path
self.path = path.parent
if kwargs.get("storage") != MemoryStorage:
args = (path,) + args
super().__init__(*args, **kwargs)