Skip to content

Commit

Permalink
Fix limb: goal.names must be goal.name
Browse files Browse the repository at this point in the history
  • Loading branch information
ThyMYthOS committed Aug 12, 2020
1 parent 9de561e commit a8b3203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intera_interface/src/intera_interface/limb.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def ik_request(self, pose,
ikreq.use_nullspace_goal.append(True)
# The nullspace goal can either be the full set or subset of joint angles
goal = JointState()
goal.names = nullspace_goal.keys()
goal.name = nullspace_goal.keys()
goal.position = nullspace_goal.values()
ikreq.nullspace_goal.append(goal)
# The gain used to bias toward the nullspace goal. Must be [0.0, 1.0]
Expand Down

0 comments on commit a8b3203

Please sign in to comment.