From 71ca488c6201552647fe73a030533de03ab0dbd4 Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 9 Feb 2021 22:16:54 -0600 Subject: [PATCH] Add count endpoint parameter for API.retweeters --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 293f2c6..8279c20 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -438,7 +438,7 @@ class API: """ return self.request( 'GET', 'statuses/retweeters/ids', id, *args, endpoint_parameters=( - 'id', 'cursor', 'stringify_ids' + 'id', 'count', 'cursor', 'stringify_ids' ), **kwargs ) -- 2.25.1