From e7b9b7d5f052f717c738910b1d020094784e7362 Mon Sep 17 00:00:00 2001 From: noobiangodd <75197196+noobiangodd@users.noreply.github.com> Date: Sun, 19 Jan 2025 16:55:50 +0000 Subject: [PATCH] Update tvdb_v4_official.py fix get_series_episodes as it requires season --- tvdb_v4_official.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tvdb_v4_official.py b/tvdb_v4_official.py index ab29507..facb8a0 100644 --- a/tvdb_v4_official.py +++ b/tvdb_v4_official.py @@ -197,6 +197,7 @@ def get_series_episodes( self, id: int, season_type: str = "default", + season: int = 1, page: int = 0, lang: str = None, meta=None, @@ -450,4 +451,4 @@ def get_user(self) -> dict: def get_user_favorites(self) -> dict: """Returns a user info dictionary""" url = self.url.construct('user/favorites') - return self.request.make_request(url) \ No newline at end of file + return self.request.make_request(url)