From 61bf51acb58f84338d5442141a2352039fa6d5da Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 1 Nov 2019 10:53:47 +1100 Subject: Cleanup: pep8 for examples --- doc/python_api/examples/bpy.app.timers.1.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc/python_api/examples/bpy.app.timers.1.py') diff --git a/doc/python_api/examples/bpy.app.timers.1.py b/doc/python_api/examples/bpy.app.timers.1.py index bae3b94b24a..a8ce7fde552 100644 --- a/doc/python_api/examples/bpy.app.timers.1.py +++ b/doc/python_api/examples/bpy.app.timers.1.py @@ -4,7 +4,9 @@ Run a Function in x Seconds """ import bpy + def in_5_seconds(): print("Hello World") + bpy.app.timers.register(in_5_seconds, first_interval=5) -- cgit v1.2.3