From 39f465e9ef498b8e5da1b39570592f6875933ddd Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 25 Feb 2022 18:27:13 -0600 Subject: [PATCH] Add parameters to Client.get_retweeters signature in documentation Add new max_results and pagination_token parameters to Client.get_retweeters signature in documentation --- tweepy/client.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tweepy/client.py b/tweepy/client.py index aab302e..ae56fbe 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -632,8 +632,9 @@ class Client(BaseClient): def get_retweeters(self, id, *, user_auth=False, **params): """get_retweeters( \ - id, *, expansions, media_fields, place_fields, poll_fields, \ - tweet_fields, user_fields, user_auth=False \ + id, *, expansions, max_results, media_fields, pagination_token, \ + place_fields, poll_fields, tweet_fields, user_fields, \ + user_auth=False \ ) Allows you to get information about who has Retweeted a Tweet. -- 2.25.1