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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'curve_simplify.py')
-rw-r--r--curve_simplify.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/curve_simplify.py b/curve_simplify.py
index 175fffb9..bd7e6464 100644
--- a/curve_simplify.py
+++ b/curve_simplify.py
@@ -586,12 +586,10 @@ class CURVE_OT_simplify(bpy.types.Operator):
#### REGISTER ###################################
#################################################
def register():
- bpy.types.register(CURVE_OT_simplify)
- bpy.types.register(GRAPH_OT_simplify)
+ pass
def unregister():
- bpy.types.unregister(CURVE_OT_simplify)
- bpy.types.unregister(GRAPH_OT_simplify)
+ pass
if __name__ == "__main__":
register()