Skip to content

Commit

Permalink
Merge pull request #966 from tue-robotics/MatthijsBurgh-patch-1
Browse files Browse the repository at this point in the history
(hand_me_that) remove typehint which would require extra dep
  • Loading branch information
PetervDooren committed Dec 14, 2019
2 parents 99a069f + ec48d60 commit 58fd400
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from rospy import ServiceException
from smach import StateMachine, cb_interface, CBState
from std_msgs.msg import Header
from ed_sensor_integration.srv import RayTraceResponse


OPERATOR = None
Expand Down Expand Up @@ -134,7 +133,7 @@ def _get_furniture(user_data):
),
pose=OPERATOR.pointing_pose
))
result = robot.ed.ray_trace(map_pose) # type: RayTraceResponse
result = robot.ed.ray_trace(map_pose)
except Exception as e:
rospy.logerr("Could not get ray trace from closest person: {}".format(e))
rospy.sleep(1.)
Expand Down

0 comments on commit 58fd400

Please sign in to comment.