From 0567adcc41d2fd2df981073df5c8ce78d8e9399b Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 23 Feb 2025 13:40:45 -0500 Subject: [PATCH] fix incorrect import --- catalog/tv/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/catalog/tv/models.py b/catalog/tv/models.py index 38dfbb49..c4aec7d9 100644 --- a/catalog/tv/models.py +++ b/catalog/tv/models.py @@ -28,7 +28,6 @@ For now, we follow Douban convention, but keep an eye on it in case it breaks it from functools import cached_property from typing import TYPE_CHECKING -from auditlog.models import QuerySet from django.db import models from django.utils.translation import gettext_lazy as _ @@ -95,7 +94,7 @@ class TVEpisodeSchema(ItemSchema): class TVShow(Item): if TYPE_CHECKING: - seasons: QuerySet["TVSeason"] + seasons: models.QuerySet["TVSeason"] schema = TVShowSchema child_class = "TVSeason" category = ItemCategory.TV