From f5cfbc25b6039addf0c178009ffdd051672cf3ef Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Thu, 23 Nov 2017 22:20:30 -1000 Subject: [PATCH] Minor indentation fix --- hecl/blender/hecl/sact/SACTAction.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hecl/blender/hecl/sact/SACTAction.py b/hecl/blender/hecl/sact/SACTAction.py index c72f13f86..71df375d6 100644 --- a/hecl/blender/hecl/sact/SACTAction.py +++ b/hecl/blender/hecl/sact/SACTAction.py @@ -198,9 +198,8 @@ class SACTAction_load(bpy.types.Operator): # Registration def register(): bpy.types.Action.hecl_fps = bpy.props.IntProperty(name="HECL Actor Sub-action Frame-rate", - description="Frame-rate at which action is authored; to be interpolated at 60-fps by runtime", - min=1, max=60, default=30, - update=active_action_update) + description="Frame-rate at which action is authored; to be interpolated at 60-fps by runtime", + min=1, max=60, default=30, update=active_action_update) bpy.utils.register_class(SACTAction) bpy.utils.register_class(SACTAction_add) bpy.utils.register_class(SACTAction_load)