Skip to content

Commit c09a8de

Browse files
committed
change xrange to range
1 parent 38fde39 commit c09a8de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/lib/twitch/api/parameters.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
See LICENSES/GPL-3.0-only for more information.
1111
"""
1212

13-
from six.moves import xrange
13+
from six.moves import range
1414

1515
from base64 import b64decode
1616

@@ -223,7 +223,7 @@ class IntRange(_Parameter):
223223

224224
@classmethod
225225
def __init__(cls, first, last):
226-
cls._valid = [i for i in xrange(first, last + 1)]
226+
cls._valid = [i for i in range(first, last + 1)]
227227

228228

229229
class ItemCount(object):

0 commit comments

Comments
 (0)