From 7cb67c32a6da84207a7662ea66784d15a5c60690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Wed, 21 Feb 2024 14:18:28 +0200 Subject: [PATCH] Add rated_at paramter to TVShow.rate() --- trakt/tv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trakt/tv.py b/trakt/tv.py index 91db5b58..c4b73456 100644 --- a/trakt/tv.py +++ b/trakt/tv.py @@ -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."""