Skip to content

Commit 566cf9d

Browse files
committed
Run linting
1 parent 4f11c7f commit 566cf9d

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

spot_wrapper/wrapper.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1305,21 +1305,21 @@ def velocity_cmd(
13051305
def arm_joint_cmd(
13061306
self, *, sh0: float, sh1: float, el0: float, el1: float, wr0: float, wr1: float
13071307
) -> typing.Tuple[bool, str]:
1308-
"""
1309-
Send a single point arm joint command to the robot.
1310-
1311-
Args:
1312-
sh0: shoulder joint angle
1313-
sh1: shoulder joint angle
1314-
el0: elbow joint angle
1315-
el1: elbow joint angle
1316-
wr0: wrist joint angle
1317-
wr1: wrist joint angle
1318-
1319-
Returns:
1320-
Tuple of bool success and a string message
1308+
"""
13211309
1322-
"""
1310+
Send a single point arm joint command to the robot.
1311+
1312+
Args:
1313+
sh0: shoulder joint angle
1314+
sh1: shoulder joint angle
1315+
el0: elbow joint angle
1316+
el1: elbow joint angle
1317+
wr0: wrist joint angle
1318+
wr1: wrist joint angle
1319+
1320+
Returns:
1321+
Tuple of bool success and a string message
1322+
"""
13231323
robot_command = RobotCommandBuilder.arm_joint_command(sh0, sh1, el0, el1, wr0, wr1)
13241324
response = self._robot_command(robot_command)
13251325
return response[0], response[1]

0 commit comments

Comments
 (0)