From: Harmon Date: Tue, 4 Oct 2022 03:52:32 +0000 (-0500) Subject: Use tuple for API.indicate_direct_message_typing endpoint_parameters X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=396ab841b73771ef6f91088fb8937a252560cf34;p=tweepy.git Use tuple for API.indicate_direct_message_typing endpoint_parameters --- 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 )