Skip to content

Commit

Permalink
Remove map_ keyword argument aliasing for API.statuses_lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Feb 7, 2021
1 parent 8decaf0 commit 0a404c3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tweepy/api.py
Expand Up @@ -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',
Expand Down

0 comments on commit 0a404c3

Please sign in to comment.