Skip to content

Commit

Permalink
fix missing
Browse files Browse the repository at this point in the history
  • Loading branch information
mqcmd196 committed Oct 15, 2023
1 parent 4b9fd23 commit 0396ab4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,16 +191,16 @@ def __init__(self):
self._melodic_apply_planning_scene.ApplyPlanningScene,
)
self.check_state_validity_proxy = rospy.ServiceProxy(
"/check_state_validity", self._melodic_apply_planning_scene.GetStateValidity
"/check_state_validity", self._melodic_get_state_validity.GetStateValidity
)
self.compute_ik_proxy = rospy.ServiceProxy(
"/compute_ik", self._melodic_apply_planning_scene.GetPositionIK
"/compute_ik", self._melodic_get_position_ik.GetPositionIK
)
self.get_planning_scene_proxy = rospy.ServiceProxy(
"/get_planning_scene", self._melodic_apply_planning_scene.GetPlanningScene
"/get_planning_scene", self._melodic_get_planning_scene.GetPlanningScene
)
self.plan_kinematic_path_proxy = rospy.ServiceProxy(
"/plan_kinematic_path", self._melodic_apply_planning_scene.GetMotionPlan
"/plan_kinematic_path", self._melodic_get_motion_plan.GetMotionPlan
)

def _apply_planning_scene_srv_cb(self, request):
Expand Down

0 comments on commit 0396ab4

Please sign in to comment.