Skip to content

Commit

Permalink
Add rated_at parameter to TVShow.rate()
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Feb 21, 2024
1 parent 24cc239 commit d1a31be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trakt/tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,12 +535,12 @@ def mark_as_unseen(self):
"""
return remove_from_history(self)

def rate(self, rating):
def rate(self, rating, rated_at=None):
"""Rate this :class:`TVShow` on trakt. Depending on the current users
settings, this may also send out social updates to facebook, twitter,
tumblr, and path.
"""
return rate(self, rating)
return rate(self, rating, rated_at)

def remove_from_library(self):
"""Remove this :class:`TVShow` from your library."""
Expand Down

0 comments on commit d1a31be

Please sign in to comment.