From ad361fda1253856edce597e2a962ea954c2f0ec8 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Wed, 18 Oct 2023 12:48:25 -0300 Subject: [PATCH] [Fixed] Removed debug print --- kibot/out_pcb2blender_tools.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kibot/out_pcb2blender_tools.py b/kibot/out_pcb2blender_tools.py index 2218bb34..937f4a18 100644 --- a/kibot/out_pcb2blender_tools.py +++ b/kibot/out_pcb2blender_tools.py @@ -220,7 +220,6 @@ class PCB2Blender_ToolsOptions(VariantOptions): thickness_mm = GS.to_mm(ds.GetBoardThickness()) mask_color, mask_color_custom = self.parse_kicad_color(GS.global_solder_mask_color.upper()) silks_color, silks_color_custom = self.parse_kicad_color(GS.global_silk_screen_color.upper()) - logger.error(f"{mask_color} {mask_color_custom}") with open(fname, 'wb') as f: f.write(struct.pack("!fbBBBbBBBb", thickness_mm, mask_color, *mask_color_custom, silks_color, *silks_color_custom, surface_finish))