We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38fde39 commit c09a8deCopy full SHA for c09a8de
1 file changed
resources/lib/twitch/api/parameters.py
@@ -10,7 +10,7 @@
10
See LICENSES/GPL-3.0-only for more information.
11
"""
12
13
-from six.moves import xrange
+from six.moves import range
14
15
from base64 import b64decode
16
@@ -223,7 +223,7 @@ class IntRange(_Parameter):
223
224
@classmethod
225
def __init__(cls, first, last):
226
- cls._valid = [i for i in xrange(first, last + 1)]
+ cls._valid = [i for i in range(first, last + 1)]
227
228
229
class ItemCount(object):
0 commit comments