Skip to content

Commit

Permalink
[jsk_interactive_marker/scripts/transformable_markers_client.py] Fix …
Browse files Browse the repository at this point in the history
…for Python3
  • Loading branch information
pazeshun committed Aug 17, 2023
1 parent 8cfd3b6 commit 8a1d63d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
import rospy


# Python2's xrange equals Python3's range, and xrange is removed on Python3
if not hasattr(__builtins__, 'xrange'):
xrange = range


class TransformableMarkersClient(object):

def __init__(self):
Expand Down

0 comments on commit 8a1d63d

Please sign in to comment.