From f0a7f72f59ed30006540d786e470499b2bf70589 Mon Sep 17 00:00:00 2001 From: WorldTeacher <41587052+WorldTeacher@users.noreply.github.com> Date: Tue, 7 May 2024 14:20:50 +0200 Subject: [PATCH] remove hardcoded db --- src/backend/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/database.py b/src/backend/database.py index a6a0b26..fa67d0f 100644 --- a/src/backend/database.py +++ b/src/backend/database.py @@ -34,7 +34,7 @@ class Database: Initialize the database and create the tables if they do not exist. """ - def __init__(self, db_path: str = "sap.db"): + def __init__(self, db_path: str = None): """ Default constructor for the database class