fix incorrect import
This commit is contained in:
parent
5654af5f29
commit
0567adcc41
1 changed files with 1 additions and 2 deletions
|
@ -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 functools import cached_property
|
||||||
from typing import TYPE_CHECKING
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
from auditlog.models import QuerySet
|
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
|
||||||
|
@ -95,7 +94,7 @@ class TVEpisodeSchema(ItemSchema):
|
||||||
|
|
||||||
class TVShow(Item):
|
class TVShow(Item):
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
seasons: QuerySet["TVSeason"]
|
seasons: models.QuerySet["TVSeason"]
|
||||||
schema = TVShowSchema
|
schema = TVShowSchema
|
||||||
child_class = "TVSeason"
|
child_class = "TVSeason"
|
||||||
category = ItemCategory.TV
|
category = ItemCategory.TV
|
||||||
|
|
Loading…
Add table
Reference in a new issue