From 388498f19ba50326c883a0a2cb27a2195146f658 Mon Sep 17 00:00:00 2001 From: DoctorPresto <111536029+DoctorPresto@users.noreply.github.com> Date: Wed, 20 Dec 2023 17:00:58 -0500 Subject: [PATCH] small fix --- i_scene_cp77_gltf/main/meshtools.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/i_scene_cp77_gltf/main/meshtools.py b/i_scene_cp77_gltf/main/meshtools.py index 13c99a3..da6a2e7 100644 --- a/i_scene_cp77_gltf/main/meshtools.py +++ b/i_scene_cp77_gltf/main/meshtools.py @@ -12,7 +12,6 @@ def CP77CollectionList(self, context): items = [] - items.append('None') ## don't include these as their not useful excluded_names = ["Collection", "Scene Collection"] @@ -24,7 +23,6 @@ def CP77CollectionList(self, context): def CP77ArmatureList(self, context): items = [] - items.append('None') for obj in bpy.data.objects: if obj.type == 'ARMATURE': items.append((obj.name, obj.name, ""))