Skip to content

Commit c2efe03

Browse files
authored
Fix typo in print statement for immediate execution
1 parent 681f5ce commit c2efe03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

interpreter/core/computer/skills/skills.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def {normalized_name}(step=0):
237237
else:
238238
computer.mouse.click(steps[step]["element"], icon_dimensions=steps[step]["icon_dimensions"]) # Instructed click
239239
if step + 1 < len(steps):
240-
print("After completing the above, I need you to run {normalized_name}(step=" + str(step + 1) + ") immediatly.")
240+
print("After completing the above, I need you to run {normalized_name}(step=" + str(step + 1) + ") immediately.")
241241
else:
242242
print("After executing the code, you have completed all the steps, the task/skill has been run!")
243243
else:

0 commit comments

Comments
 (0)