Fix type issue

This commit is contained in:
Zoe Roux 2024-02-19 17:46:12 +01:00
parent e612869027
commit 346750931d
2 changed files with 2 additions and 4 deletions

View File

@ -59,9 +59,7 @@ class Provider:
raise NotImplementedError
@abstractmethod
async def identify_season(
self, show_id: str, season_number: Optional[int]
) -> Season:
async def identify_season(self, show_id: str, season_number: int) -> Season:
raise NotImplementedError
@abstractmethod