projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f5f98d6
)
Improve variable name in Cursor.items
author
Harmon
<Harmon758@gmail.com>
Thu, 29 Apr 2021 09:21:25 +0000
(
04:21
-0500)
committer
Harmon
<Harmon758@gmail.com>
Thu, 29 Apr 2021 09:21:25 +0000
(
04:21
-0500)
tweepy/cursor.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/cursor.py
b/tweepy/cursor.py
index aabd94807702579dff62d87ff02b13a36eaacf13..91635314d623fc2659f871c8cd1ce02dfe436d85 100644
(file)
--- a/
tweepy/cursor.py
+++ b/
tweepy/cursor.py
@@
-69,9
+69,9
@@
class Cursor:
ItemIterator
Iterator to iterate through items
"""
- i = ItemIterator(self.iterator)
- i.limit = limit
- return i
+ i
terator
= ItemIterator(self.iterator)
+ i
terator
.limit = limit
+ return i
terator
class BaseIterator: