From 5cd12c3f34e236da20f8c86385e9686ab470c056 Mon Sep 17 00:00:00 2001 From: kosh Date: Sun, 1 Sep 2024 12:15:28 +0530 Subject: [PATCH] Fixed database path in teams --- backend/src/utils/team.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/utils/team.py b/backend/src/utils/team.py index 50bd294..d344b4b 100644 --- a/backend/src/utils/team.py +++ b/backend/src/utils/team.py @@ -21,7 +21,7 @@ class Team: class TeamHandler: - __connection: sqlite3.Connection = sqlite3.connect("../data/sqlite-database.db", check_same_thread=False) + __connection: sqlite3.Connection = sqlite3.connect("./data/sqlite-database.db", check_same_thread=False) __cursor: sqlite3.Cursor = __connection.cursor() @classmethod