From 018a080a4748e4c8579b876c4bca2ff115c92192 Mon Sep 17 00:00:00 2001 From: Yusarina Date: Thu, 25 Jul 2024 01:45:21 +0100 Subject: [PATCH] Update common.py --- core/common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/common.py b/core/common.py index 8463734..2dd93ab 100644 --- a/core/common.py +++ b/core/common.py @@ -122,9 +122,6 @@ def duplicatebone(b: bpy.types.EditBone) -> bpy.types.EditBone: def has_shapekeys(mesh_obj: Object) -> bool: return mesh_obj.data.shape_keys is not None -def has_shapekeys(mesh_obj: Object) -> bool: - return mesh_obj.data.shape_keys is not None - def sort_shape_keys(mesh: Object) -> None: print("Starting shape key sorting...") if not has_shapekeys(mesh):