Deleted unused import and corrected typing

This commit is contained in:
2025-06-24 13:37:19 +03:00
parent 6658d773bf
commit 64911a52b6
2 changed files with 17 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
from fastapi import APIRouter, Depends, HTTPException
from sqlmodel import Session, select
from typing import Deque, List
from typing import List
from library_service.settings import get_session
from library_service.models.db import Book, Author, AuthorBookLink, BookWithAuthors