Skip to content

Commit 6bd115d

Browse files
committed
Keyword guard function inputs
1 parent 1b2312c commit 6bd115d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spot_wrapper/wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1327,7 +1327,7 @@ def velocity_cmd(
13271327
return response[0], response[1]
13281328

13291329
def arm_joint_cmd(
1330-
self, sh0: float, sh1: float, el0: float, el1: float, wr0: float, wr1: float
1330+
self, *, sh0: float, sh1: float, el0: float, el1: float, wr0: float, wr1: float
13311331
) -> typing.Tuple[bool, str]:
13321332
traj_point = RobotCommandBuilder.create_arm_joint_trajectory_point(sh0, sh1, el0, el1, wr0, wr1)
13331333
arm_joint_traj = arm_command_pb2.ArmJointTrajectory(points=[traj_point])

0 commit comments

Comments
 (0)