[Fixed] Removed debug print

This commit is contained in:
Salvador E. Tropea 2023-10-18 12:48:25 -03:00
parent 8f841fe996
commit ad361fda12
1 changed files with 0 additions and 1 deletions

View File

@ -220,7 +220,6 @@ class PCB2Blender_ToolsOptions(VariantOptions):
thickness_mm = GS.to_mm(ds.GetBoardThickness()) thickness_mm = GS.to_mm(ds.GetBoardThickness())
mask_color, mask_color_custom = self.parse_kicad_color(GS.global_solder_mask_color.upper()) 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()) 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: with open(fname, 'wb') as f:
f.write(struct.pack("!fbBBBbBBBb", thickness_mm, mask_color, *mask_color_custom, silks_color, f.write(struct.pack("!fbBBBbBBBb", thickness_mm, mask_color, *mask_color_custom, silks_color,
*silks_color_custom, surface_finish)) *silks_color_custom, surface_finish))