From fc05e543e6fd43ae2632f7e412798194456c89b9 Mon Sep 17 00:00:00 2001 From: Piotr Dec Date: Tue, 30 Jul 2024 19:33:13 +0200 Subject: [PATCH] chore: directions order in python --- python/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/test.py b/python/test.py index 53ea305..ae5a23d 100644 --- a/python/test.py +++ b/python/test.py @@ -32,7 +32,6 @@ def lines(controller: Controller): def direction(controller: Controller): print("Direction") - controller.set_direction(OutAngle.RightDown) controller.set_direction(OutAngle.SharpRight) controller.set_direction(OutAngle.Right) controller.set_direction(OutAngle.EasyRight) @@ -41,6 +40,7 @@ def direction(controller: Controller): controller.set_direction(OutAngle.Left) controller.set_direction(OutAngle.SharpLeft) controller.set_direction(OutAngle.LeftDown) + controller.set_direction(OutAngle.RightDown) controller.set_direction(OutAngle.Down) controller.set_direction(OutAngle.SharpRight, OutType.LongerLane) controller.set_direction(OutAngle.Right, OutType.LongerLane)