From 7a7c3ac9f43392dc237539814fafd204a2c3827f Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 27 May 2021 06:35:04 -0500 Subject: [PATCH] Update and improve documentation for API.mutes_ids --- tweepy/api.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index ca6c5b4..2212326 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -2945,12 +2945,20 @@ class API: Returns an array of numeric user IDs the authenticating user has muted. - :param stringify_ids: |stringify_ids| - :param cursor: |cursor| + Parameters + ---------- + stringify_ids + |stringify_ids| + cursor + |cursor| - :rtype: list of :class:`int` + Returns + ------- + :py:class:`List`\ [:class:`int`] - :reference: https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids + References + ---------- + https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-mutes-users-ids """ return self.request( 'GET', 'mutes/users/ids', endpoint_parameters=( -- 2.25.1