Skip to content

Commit

Permalink
Remove instantaneous argument that is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
m-decoster committed Aug 22, 2024
1 parent bb00fa1 commit b012b19
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 @@ -47,7 +47,7 @@ def aligned_awaitable(start_time: float) -> bool:
return AwaitableAction(partial(aligned_awaitable, time.time()))

def set_platform_velocity_target(self, x: float, y: float, a: float, timeout: float) -> AwaitableAction:
self._kelo_robile.set_platform_velocity_target(x, y, a, timeout=timeout, instantaneous=True)
self._kelo_robile.set_platform_velocity_target(x, y, a, timeout=timeout)

def timeout_awaitable() -> bool:
time.sleep(timeout)
Expand Down

0 comments on commit b012b19

Please sign in to comment.