fix: use 'db' instead of '.db' for storage directory

This commit is contained in:
Greyson LaLonde
2025-09-18 18:19:43 -04:00
parent 25ba1620cd
commit 8025f5bb95

View File

@@ -15,7 +15,7 @@ def db_storage_path() -> str:
if storage_dir:
data_dir = Path(storage_dir)
else:
data_dir = Path.cwd() / ".db"
data_dir = Path.cwd() / "db"
data_dir.mkdir(parents=True, exist_ok=True)
return str(data_dir)