Skip to content

Commit

Permalink
fix db path
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Nov 17, 2023
1 parent 6d3c19b commit 4a3d337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/database/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Database:
_pool: asyncpg.Pool[asyncpg.Record]

def __init__(self) -> None:
self.schema_file = pathlib.Path("core/databases/SCHEMA.sql")
self.schema_file = pathlib.Path("core/database/SCHEMA.sql")

async def __aenter__(self) -> Self:
await self.setup()
Expand Down

0 comments on commit 4a3d337

Please sign in to comment.