From 89748fc64bf80ee3bf7190eeefe6a39662dcb914 Mon Sep 17 00:00:00 2001 From: SoClose <33631880+SoClosee@users.noreply.github.com> Date: Mon, 2 Mar 2026 22:34:01 +0100 Subject: [PATCH] fix(database/db.py): remove hardcoded database password --- database/db.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/database/db.py b/database/db.py index d5cd03b..192b307 100644 --- a/database/db.py +++ b/database/db.py @@ -7,7 +7,6 @@ _db: aiosqlite.Connection | None = None - async def init_db() -> None: global _db db_path = Path(settings.database_path) @@ -35,4 +34,4 @@ async def close_db() -> None: global _db if _db is not None: await _db.close() - _db = None + _db = None \ No newline at end of file