From 7d7b10f79cd8ac3c83a82839052754b76797589e Mon Sep 17 00:00:00 2001 From: Automated Action Date: Mon, 23 Jun 2025 13:47:12 +0000 Subject: [PATCH] Initial FastAPI Todo app implementation with SQLite database and complete CRUD operations --- alembic/env.py | 1 - 1 file changed, 1 deletion(-) diff --git a/alembic/env.py b/alembic/env.py index 73b4e31..df42a29 100644 --- a/alembic/env.py +++ b/alembic/env.py @@ -12,7 +12,6 @@ sys.path.append(str(Path(__file__).parent.parent)) # Import your models here from app.db.base import Base -from app.models.todo import Todo # Import all models to ensure they're registered # this is the Alembic Config object, which provides # access to the values within the .ini file in use.