Skip to content

Commit 4df6e07

Browse files
committed
fixing order of inputs in python example script
1 parent 2345933 commit 4df6e07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/manual_control.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def manual_controls():
8989
yaw = float(input_list[3])
9090

9191
await drone.manual_control.set_manual_control_input(
92-
roll, pitch, throttle, yaw)
92+
pitch, roll, throttle, yaw)
9393

9494
await asyncio.sleep(0.1)
9595

0 commit comments

Comments
 (0)