Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
24c30787
Commit
24c30787
authored
Dec 21, 2013
by
Aaron Hill
Browse files
Merge pull request #244 from paulofreitas/patch-1
Fixed broken User.lists() API call
parents
d2419625
a41dec37
Changes
1
Hide whitespace changes
Inline
Side-by-side
tweepy/models.py
View file @
24c30787
...
...
@@ -159,7 +159,7 @@ class User(Model):
return
self
.
_api
.
lists_subscriptions
(
user
=
self
.
screen_name
,
*
args
,
**
kargs
)
def
lists
(
self
,
*
args
,
**
kargs
):
return
self
.
_api
.
lists
(
user
=
self
.
screen_name
,
*
args
,
**
kargs
)
return
self
.
_api
.
lists
_all
(
user
=
self
.
screen_name
,
*
args
,
**
kargs
)
def
followers_ids
(
self
,
*
args
,
**
kargs
):
return
self
.
_api
.
followers_ids
(
user_id
=
self
.
id
,
*
args
,
**
kargs
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment