From 4a3d33770cd9de4d7408bc0b032672b07c49037c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Fri, 17 Nov 2023 18:23:47 +0000 Subject: [PATCH] fix db path --- core/database/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/database/database.py b/core/database/database.py index 69e5a85..cff4fb0 100644 --- a/core/database/database.py +++ b/core/database/database.py @@ -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()