From 4af6d34507ae1a27240e1f4bb5b748a6e4d31ab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Trkan?= Date: Wed, 24 Sep 2025 20:25:00 +0200 Subject: [PATCH] refactor(backend): remove circular dependency --- backend/app/core/db.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/app/core/db.py b/backend/app/core/db.py index ff91c1a..40ff77f 100644 --- a/backend/app/core/db.py +++ b/backend/app/core/db.py @@ -15,7 +15,6 @@ if not DATABASE_URL: raise Exception("Only MariaDB is supported. Please set the DATABASE_URL environment variable.") # Load all models to register them - from app.models.user import User from app.models.transaction import Transaction