From 337ddedd3fba6e7178f42de75be3c80034711474 Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 25 Feb 2022 18:29:09 -0600 Subject: [PATCH] Add parameter to Client.search_all_tweets signature in documentation Add new sort_order parameter to Client.search_all_tweets signature in documentation --- tweepy/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tweepy/client.py b/tweepy/client.py index ae56fbe..4a79bcb 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -722,8 +722,8 @@ class Client(BaseClient): def search_all_tweets(self, query, **params): """search_all_tweets( \ query, *, end_time, expansions, max_results, media_fields, \ - next_token, place_fields, poll_fields, since_id, start_time, \ - tweet_fields, until_id, user_fields \ + next_token, place_fields, poll_fields, since_id, sort_order, \ + start_time, tweet_fields, until_id, user_fields \ ) This endpoint is only available to those users who have been approved -- 2.25.1