From 62550e759af6ca3484eff3507265c61c69737f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Mon, 2 Jan 2023 22:36:10 +0200 Subject: [PATCH] Pass extra arguments to Movie in watchlist_movies --- trakt/users.py | 1 + 1 file changed, 1 insertion(+) diff --git a/trakt/users.py b/trakt/users.py index ce40f53b..36b1adec 100644 --- a/trakt/users.py +++ b/trakt/users.py @@ -337,6 +337,7 @@ def watchlist_movies(self): self._movie_watchlist = [] for movie in data: mov = movie.pop('movie') + mov.update(movie) self._movie_watchlist.append(Movie(**mov)) yield self._movie_watchlist yield self._movie_watchlist