hyperdashio / hyperdash-sdk-py

Official Python SDK for Hyperdash
https://hyperdash.io
198 stars 26 forks source link

small bugfix for python3-compatibility #102

Closed fgolemo closed 6 years ago

fgolemo commented 6 years ago

in Python 3 "xrange" was renamed to "range"

richardartoul commented 6 years ago

Thanks for the fix! Since we already have the six library installed, do you mind doing something like:

from six.moves import range

Instead? Its a little cleaner

fgolemo commented 6 years ago

Oh yeah good idea. :) Will change it tomorrow, don't have my laptop right now.

richardartoul commented 6 years ago

interesting, it let me edit it for you in the GUI!

richardartoul commented 6 years ago

Thanks for your contribution :)