From c104c4a09cbbf51bed8848fb5e0348fcb97a680d Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 24 May 2021 16:59:20 -0500 Subject: [PATCH] Update and improve documentation for API.friendships_outgoing --- tweepy/api.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index 372c097..77802ee 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -2257,12 +2257,20 @@ class API: Returns a collection of numeric IDs for every protected user for whom the authenticating user has a pending follow request. - :param cursor: |cursor| - :param stringify_ids: |stringify_ids| + Parameters + ---------- + cursor + |cursor| + stringify_ids + |stringify_ids| - :rtype: list of :class:`int` + Returns + ------- + :py:class:`List`\ [:class:`int`] - :reference: https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-outgoing + References + ---------- + https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-outgoing """ return self.request( 'GET', 'friendships/outgoing', endpoint_parameters=( -- 2.25.1