From: Harmon Date: Sun, 9 Oct 2022 20:01:03 +0000 (-0500) Subject: Update signature for get_quote_tweets in documentation X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=17e02b78b9b4c5e6bf2d94e658e9d9790cd4c9a9;p=tweepy.git Update signature for get_quote_tweets in documentation Add exclude parameter --- diff --git a/tweepy/asynchronous/client.py b/tweepy/asynchronous/client.py index a7ce77b..871a01e 100644 --- a/tweepy/asynchronous/client.py +++ b/tweepy/asynchronous/client.py @@ -763,9 +763,10 @@ class AsyncClient(AsyncBaseClient): async def get_quote_tweets(self, id, *, user_auth=False, **params): """get_quote_tweets( \ - id, *, expansions=None, max_results=None, media_fields=None, \ - pagination_token=None, place_fields=None, poll_fields=None, \ - tweet_fields=None, user_fields=None, user_auth=False \ + id, *, exclude=None, expansions=None, max_results=None, \ + media_fields=None, pagination_token=None, place_fields=None, \ + poll_fields=None, tweet_fields=None, user_fields=None, \ + user_auth=False \ ) Returns Quote Tweets for a Tweet specified by the requested Tweet ID. diff --git a/tweepy/client.py b/tweepy/client.py index cba77b7..ed79dfe 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -829,9 +829,10 @@ class Client(BaseClient): def get_quote_tweets(self, id, *, user_auth=False, **params): """get_quote_tweets( \ - id, *, expansions=None, max_results=None, media_fields=None, \ - pagination_token=None, place_fields=None, poll_fields=None, \ - tweet_fields=None, user_fields=None, user_auth=False \ + id, *, exclude=None, expansions=None, max_results=None, + media_fields=None, pagination_token=None, place_fields=None, \ + poll_fields=None, tweet_fields=None, user_fields=None, \ + user_auth=False \ ) Returns Quote Tweets for a Tweet specified by the requested Tweet ID.