From 922c391ffc7cf4dc42854ebe6ebdd72e24e1904f Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 7 Jan 2025 14:39:15 +0800 Subject: [PATCH] fix --- app/schemas/transfer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/schemas/transfer.py b/app/schemas/transfer.py index a8f02390..07adac82 100644 --- a/app/schemas/transfer.py +++ b/app/schemas/transfer.py @@ -3,7 +3,9 @@ from typing import Optional, List, Any, Callable from pydantic import BaseModel, Field -from app.schemas import TmdbEpisode, DownloadHistory, MetaInfo, MediaInfo +from app.schemas.tmdb import TmdbEpisode +from app.schemas.history import DownloadHistory +from app.schemas.context import MetaInfo, MediaInfo from app.schemas.file import FileItem from app.schemas.system import TransferDirectoryConf