Skip to content

Commit

Permalink
Pass extra arguments to Movie in watchlist_movies
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Jan 2, 2023
1 parent 143344b commit 62550e7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions trakt/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 62550e7

Please sign in to comment.