Skip to content

Commit

Permalink
Run formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
llee-bdai committed Oct 16, 2024
1 parent dc6fd6e commit 15d9549
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion spot_wrapper/spot_arm.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,9 @@ def hand_pose(
hand_pose_traj_point = trajectory_pb2.SE3TrajectoryPoint(pose=hand_pose)
if duration != 0.0:
traj_duration = seconds_to_duration(duration)
hand_pose_traj_point = trajectory_pb2.SE3TrajectoryPoint(pose=hand_pose, time_since_reference=traj_duration)
hand_pose_traj_point = trajectory_pb2.SE3TrajectoryPoint(
pose=hand_pose, time_since_reference=traj_duration
)
hand_trajectory = trajectory_pb2.SE3Trajectory(points=[hand_pose_traj_point])

arm_cartesian_command = arm_command_pb2.ArmCartesianCommand.Request(
Expand Down

0 comments on commit 15d9549

Please sign in to comment.