Skip to content

Commit

Permalink
Update signature for get_quote_tweets in documentation
Browse files Browse the repository at this point in the history
Add exclude parameter
  • Loading branch information
Harmon758 committed Oct 9, 2022
1 parent 5cb2616 commit 17e02b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions tweepy/asynchronous/client.py
Expand Up @@ -763,9 +763,10 @@ async def create_tweet(

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.
Expand Down
7 changes: 4 additions & 3 deletions tweepy/client.py
Expand Up @@ -829,9 +829,10 @@ def create_tweet(

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.
Expand Down

0 comments on commit 17e02b7

Please sign in to comment.