PyDoc: use complete sentences in comments for templates & examples

This commit is contained in:
Campbell Barton
2025-04-02 23:46:58 +00:00
parent d001e143a9
commit b2c57fd877
58 changed files with 181 additions and 179 deletions

View File

@@ -14,7 +14,7 @@ class ModalTimerOperator(bpy.types.Operator):
return {'CANCELLED'}
if event.type == 'TIMER':
# change theme color, silly!
# Change theme color, silly!
color = context.preferences.themes[0].view_3d.space.gradients.high_gradient
color.s = 1.0
color.h += 0.01
@@ -50,5 +50,5 @@ def unregister():
if __name__ == "__main__":
register()
# test call
# Test call.
bpy.ops.wm.modal_timer_operator()