From 1f053d9c90add7b1c8745582ee66b7b8af41b527 Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 27 May 2021 06:28:23 -0500 Subject: [PATCH] Update and improve documentation for API.blocks_ids --- tweepy/api.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index 98c5312..5c20c09 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -2886,12 +2886,20 @@ class API: Returns an array of numeric user IDs the authenticating user is blocking. - :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-blocks-ids + References + ---------- + https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users/api-reference/get-blocks-ids """ return self.request( 'GET', 'blocks/ids', endpoint_parameters=( -- 2.25.1