Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
Cannot concatenate string and type.
  • Loading branch information
rhaschke committed Sep 10, 2024
1 parent adb3f2c commit dee554d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moveit_commander/src/moveit_commander/move_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ def compute_cartesian_path(
else:
raise MoveItCommanderException(
"Unable to set path constraints, unknown constraint type "
+ type(path_constraints)
+ str(type(path_constraints))
)
(ser_path, fraction) = self._g.compute_cartesian_path(
[conversions.pose_to_list(p) for p in waypoints],
Expand Down

0 comments on commit dee554d

Please sign in to comment.