Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/python_api/examples/bpy.app.timers.5.py')
-rw-r--r--doc/python_api/examples/bpy.app.timers.5.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/examples/bpy.app.timers.5.py b/doc/python_api/examples/bpy.app.timers.5.py
index b35e307f218..821a047d7c7 100644
--- a/doc/python_api/examples/bpy.app.timers.5.py
+++ b/doc/python_api/examples/bpy.app.timers.5.py
@@ -20,6 +20,6 @@ def execute_queued_functions():
while not execution_queue.empty():
function = execution_queue.get()
function()
- return 1
+ return 1.0
bpy.app.timers.register(execute_queued_functions)