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! 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"