Skip to content
This repository has been archived by the owner on Jan 21, 2025. It is now read-only.

Commit

Permalink
fix: remove io_action
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanwagnerdev committed Nov 13, 2024
1 parent 7754e55 commit 5ac89ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/06_plan_and_execute_ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def main():

# Execute the motion asynchronously without yielding current execution state
print(f"Before execution {my_robot.get_io(DEFAULT_IO)=}")
await my_robot.execute_motion_async(plan_result=plan_result, speed=10, io_actions=io_actions)
await my_robot.execute_motion_async(plan_result=plan_result, speed=10)
print(f"After execution {my_robot.get_io(DEFAULT_IO)=}")


Expand Down

0 comments on commit 5ac89ee

Please sign in to comment.