From c1dcc1ff48e426da083231ee0254499ae3af5a85 Mon Sep 17 00:00:00 2001 From: ABelliqueux Date: Thu, 19 Aug 2021 18:17:35 +0200 Subject: [PATCH] Remove print spam --- 3dcam-engine-helper.py | 1 - 1 file changed, 1 deletion(-) diff --git a/3dcam-engine-helper.py b/3dcam-engine-helper.py index 2dfab0e..811426a 100644 --- a/3dcam-engine-helper.py +++ b/3dcam-engine-helper.py @@ -90,7 +90,6 @@ def selection_callback(scene): if attName in last_selection.data: value = last_selection.data[attName] if attType == 'boolean': - print(attName + ":" + str(value)) attributes[attName] = BoolProperty(name=attName, default=value, update=updateCustomProps ) elif attType == 'int': attributes[attName] = IntProperty(name=attName, default=value, update=updateCustomProps)