Skip to content

Commit 06c796a

Browse files
authored
Merge pull request #1721 from iam-saiteja/main
Fix typo in print statement for immediate execution
2 parents 681f5ce + c2efe03 commit 06c796a

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)