Skip to content

Commit

Permalink
Run linting
Browse files Browse the repository at this point in the history
  • Loading branch information
llee-bdai committed Sep 10, 2024
1 parent 843cdf2 commit b1f7e4a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions spot_wrapper/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1327,21 +1327,21 @@ def velocity_cmd(
def arm_joint_cmd(
self, *, sh0: float, sh1: float, el0: float, el1: float, wr0: float, wr1: float
) -> typing.Tuple[bool, str]:
"""
Send a single point arm joint command to the robot.
Args:
sh0: shoulder joint angle
sh1: shoulder joint angle
el0: elbow joint angle
el1: elbow joint angle
wr0: wrist joint angle
wr1: wrist joint angle
Returns:
Tuple of bool success and a string message
"""
"""
Send a single point arm joint command to the robot.
Args:
sh0: shoulder joint angle
sh1: shoulder joint angle
el0: elbow joint angle
el1: elbow joint angle
wr0: wrist joint angle
wr1: wrist joint angle
Returns:
Tuple of bool success and a string message
"""
robot_command = RobotCommandBuilder.arm_joint_command(sh0, sh1, el0, el1, wr0, wr1)
response = self._robot_command(robot_command)
return response[0], response[1]
Expand Down

0 comments on commit b1f7e4a

Please sign in to comment.