From 0a404c3fc66399271b1a1d769fc18665d1a7a37a Mon Sep 17 00:00:00 2001 From: Harmon Date: Sat, 6 Feb 2021 22:42:09 -0600 Subject: [PATCH] Remove map_ keyword argument aliasing for API.statuses_lookup --- tweepy/api.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tweepy/api.py b/tweepy/api.py index f59fc9268..8b0f41afe 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -264,9 +264,6 @@ def statuses_lookup(self, id_, *args, **kwargs): :allowed_param: 'id', 'include_entities', 'trim_user', 'map', 'include_ext_alt_text', 'include_card_uri' """ - if 'map_' in kwargs: - kwargs['map'] = kwargs.pop('map_') - return self.request( 'GET', 'statuses/lookup', list_to_csv(id_), *args, allowed_param=['id', 'include_entities', 'trim_user', 'map',