From acaca4a3db519b047aa9e28ae7d98320ae5f1c0e Mon Sep 17 00:00:00 2001 From: Steven Shamlian Date: Tue, 16 Jan 2024 16:09:28 -0500 Subject: [PATCH 1/2] Bump to 0.5.3 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dcf64da..7638f82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "irobot_edu_sdk" -version = "0.5.2" +version = "0.5.3" description = "Python SDK for iRobot Edu robots" authors = ["iRobot Corporation "] license = "BSD-3-Clause" From f7123cc4892d16e4e05888e00b01f8d9a1f89599 Mon Sep 17 00:00:00 2001 From: Steven Shamlian Date: Wed, 24 Jan 2024 11:33:06 -0500 Subject: [PATCH 2/2] fix typo --- examples/tutorial/14_hello_robots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorial/14_hello_robots.py b/examples/tutorial/14_hello_robots.py index 26e90fe..dbb92fa 100644 --- a/examples/tutorial/14_hello_robots.py +++ b/examples/tutorial/14_hello_robots.py @@ -16,7 +16,7 @@ # Functions decorated with @event triggered by events. # A robot.when_play event is triggered when the robot.play() method is called. -# It is important that an event function, is declated as async. +# It is important that event functions are declated as async. @event(robot.when_play) async def play(robot): # The name of the function can be any valid Python function name. print('play!') # Put your code here!