From 396ab841b73771ef6f91088fb8937a252560cf34 Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 3 Oct 2022 22:52:32 -0500 Subject: [PATCH] Use tuple for API.indicate_direct_message_typing endpoint_parameters --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 5120894..f60577c 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -3417,7 +3417,7 @@ class API: """ return self.request( 'POST', 'direct_messages/indicate_typing', endpoint_parameters=( - 'recipient_id' + 'recipient_id', ), recipient_id=recipient_id, **kwargs ) -- 2.25.1