Skip to content

Commit

Permalink
Add rated_at paramter to TVEpisode.rate()
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Feb 21, 2024
1 parent 7cb67c3 commit 38d77af
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 @@ -865,12 +865,12 @@ def get_description(self):
'"""
return self.overview

def rate(self, rating):
def rate(self, rating, rated_at=None):
"""Rate this :class:`TVEpisode` 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 add_to_library(self):
"""Add this :class:`TVEpisode` to your Trakt.tv library"""
Expand Down

0 comments on commit 38d77af

Please sign in to comment.