Update dependencies

This commit is contained in:
Joakim Hellsén 2024-05-21 02:50:37 +02:00
commit 3f3ad42acd
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
4 changed files with 15 additions and 19 deletions

View file

@ -4,7 +4,7 @@ import logging
import os
import time
from pathlib import Path
from typing import TYPE_CHECKING, Iterable
from typing import TYPE_CHECKING
from fastapi import APIRouter, File, Request, UploadFile
from fastapi.responses import FileResponse
@ -14,6 +14,8 @@ from app.dependencies import CommonReader, CommonStats # noqa: TCH001
from app.settings import MEDIA_ROOT
if TYPE_CHECKING:
from collections.abc import Iterable
from fastapi.datastructures import Address
from reader import Feed
from reader.types import Entry, EntrySearchResult