fix tvdb movies not working

This commit is contained in:
maxDorninger
2025-06-23 20:24:39 +02:00
parent 5a8d3b1ef9
commit 9de91a65b7
2 changed files with 28 additions and 19 deletions

View File

@@ -48,10 +48,10 @@ class AbstractMetadataProvider(ABC):
raise NotImplementedError()
@abstractmethod
def download_movie_poster_image(self, show: Show) -> bool:
def download_movie_poster_image(self, movie: Movie) -> bool:
"""
Downloads the poster image for a show.
:param show: The show to download the poster image for.
:param movie: The show to download the poster image for.
:return: True if the image was downloaded successfully, False otherwise.
"""
raise NotImplementedError()