Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add show_id property initializer to TVEpisode #23

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion trakt/tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,10 +721,11 @@ def __len__(self):
class TVEpisode(IdsMixin):
"""Container for TV Episodes"""

def __init__(self, show, season, number=-1, **kwargs):
def __init__(self, show, season, number=-1, show_id=None, **kwargs):
super().__init__()
self.media_type = 'episodes'
self.show = show
self.show_id = show_id
self.season = season
self.number = number
self.overview = self.title = self.year = self.number_abs = None
Expand Down
Loading