Skip to content

Commit d299ac3

Browse files
committed
Version 3.0.6: dashboard for robot/world fix
1 parent 85f5f2d commit d299ac3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aitk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
#
99
# **************************************************************
1010

11-
version_info = (3, 0, 5)
11+
version_info = (3, 0, 6)
1212
__version__ = ".".join(map(str, version_info))

aitk/robots/dashboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def dashboard(
7373
# Define step button click handler
7474
def step_click(button: Button) -> None:
7575
"""Handle step button click by executing robot movement."""
76-
move(world, robot, steering.value, power.value, seconds.value)
76+
move(world, robot, data, steering.value, power.value, seconds.value)
7777

7878
step.on_click(step_click)
7979
step.style.button_color = "lightblue"

0 commit comments

Comments
 (0)