Skip to content

Commit c98147c

Browse files
committed
Fix deprecated compute_cartesian_path()
1 parent 6ce67d1 commit c98147c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/move_group_python_interface/scripts/move_group_python_interface_tutorial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ def plan_cartesian_path(self, scale=1):
278278
# ignoring the check for infeasible jumps in joint space, which is sufficient
279279
# for this tutorial.
280280
(plan, fraction) = move_group.compute_cartesian_path(
281-
waypoints, 0.01, 0.0 # waypoints to follow # eef_step
282-
) # jump_threshold
281+
waypoints, 0.01 # waypoints to follow # eef_step
282+
)
283283

284284
# Note: We are just planning, not asking move_group to actually move the robot yet:
285285
return plan, fraction

0 commit comments

Comments
 (0)