Cleanup: pep8 for examples

This commit is contained in:
2019-11-01 10:53:47 +11:00
parent 78ad368d12
commit 61bf51acb5
7 changed files with 19 additions and 9 deletions

View File

@@ -4,8 +4,10 @@ Run a Function every x Seconds
"""
import bpy
def every_2_seconds():
print("Hello World")
return 2.0
bpy.app.timers.register(every_2_seconds)