Ran openscad-format over everything

This commit is contained in:
2022-03-03 14:14:37 +01:00
parent a7119fd012
commit ceca63b8d2
5 changed files with 290 additions and 371 deletions

View File

@@ -1,5 +1,5 @@
module bom_item(printable = true, label = "") {
print_label = printable ? " print " : " stock ";
item_label = label == "" ? parent_module(1) : label;
echo(str("BOM:", print_label, item_label));
print_label = printable ? " print " : " stock ";
item_label = label == "" ? parent_module(1) : label;
echo(str("BOM:", print_label, item_label));
}