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()