Skip to content

Commit 33c4e2d

Browse files
authored
Fix typo in schedule_once (#2574)
1 parent 4d09ac6 commit 33c4e2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arcade/window_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def some_action(delta_time):
328328
print(delta_time)
329329
330330
# Call the function once after 1 second
331-
arcade.schedule_one(some_action, 1)
331+
arcade.schedule_once(some_action, 1)
332332
333333
Args:
334334
function_pointer:

0 commit comments

Comments
 (0)