From 92f3fa6c7f7ea9d3eb137221628aa56c6066f3bd Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 13 May 2025 15:24:26 +0100 Subject: [PATCH] chore: remove another import --- app/api/todos.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/api/todos.py b/app/api/todos.py index 3e897e0..cd32ed0 100644 --- a/app/api/todos.py +++ b/app/api/todos.py @@ -2,7 +2,6 @@ from typing import List from fastapi import APIRouter, Depends, HTTPException, status from sqlalchemy.orm import Session -from app.database.database import get_db from app.schemas.todo import TodoCreate, TodoResponse, TodoUpdate router = APIRouter()