projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4076384
)
Fix handling of positional arguments for API.statuses_lookup
author
Harmon
<Harmon758@gmail.com>
Mon, 2 Sep 2019 05:16:55 +0000
(
00:16
-0500)
committer
Harmon
<Harmon758@gmail.com>
Mon, 2 Sep 2019 05:16:55 +0000
(
00:16
-0500)
tweepy/api.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/api.py
b/tweepy/api.py
index 1e1a2498d45ea4958c4ae8565d6a88c161f49af5..0162c97dd3c1a0b9c352572ee29841026992070d 100644
(file)
--- a/
tweepy/api.py
+++ b/
tweepy/api.py
@@
-104,7
+104,6
@@
class API(object):
:allowed_param: 'id', 'include_entities', 'trim_user', 'map',
'include_ext_alt_text', 'include_card_uri'
"""
- kwargs['id'] = list_to_csv(id_)
if 'map_' in kwargs:
kwargs['map'] = kwargs.pop('map_')
@@
-115,7
+114,7
@@
class API(object):
allowed_param=['id', 'include_entities', 'trim_user', 'map',
'include_ext_alt_text', 'include_card_uri'],
require_auth=True
- )(*args, **kwargs)
+ )(
list_to_csv(id_),
*args, **kwargs)
@property
def user_timeline(self):