Move stuff around

This commit is contained in:
Zoe Roux 2025-05-09 02:29:09 +02:00
parent f26dce64ef
commit aaa9a7703a
No known key found for this signature in database
4 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ from os.path import dirname, exists, isdir, join
from watchfiles import Change, awatch
from .client import KyooClient
from .identify import identify
from .identifiers.identify import identify
from .models.metadataid import EpisodeId, MetadataId
from .models.videos import For, Video, VideoInfo
from .requests import Request, enqueue

View File

@ -4,8 +4,8 @@ from itertools import zip_longest
from logging import getLogger
from typing import Callable, Literal, cast
from ..models.videos import Guess, Video
from .guess.guess import guessit
from .models.videos import Guess, Video
logger = getLogger(__name__)