Skip to content

Commit

Permalink
Add return type annotation -> None (mypy)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-decoster committed Oct 16, 2024
1 parent a0e94f5 commit a303497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airo-robots/airo_robots/drives/hardware/kelo_robile.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def set_platform_velocity_target(self, x: float, y: float, a: float, timeout: fl

def _move_platform_to_pose_control_loop(
self, target_pose: Vector3DType, action_start_time: float, action_timeout_time: float, timeout: float
):
) -> None:
stop = False
while not stop:
current_pose = self._kelo_robile.get_odometry()
Expand Down

0 comments on commit a303497

Please sign in to comment.