From 033ed439d2353de495c85e5180add395db1a11cf Mon Sep 17 00:00:00 2001 From: bosd Date: Mon, 17 Jul 2023 14:12:08 +0200 Subject: [PATCH] Fix pcb_clearance list error Before this pr, setting plate_pcb_clear: true resulted in: ValueError: Cannot cut type '' --- src/dactyl_manuform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dactyl_manuform.py b/src/dactyl_manuform.py index 72135e7b4..5e14e8bf9 100644 --- a/src/dactyl_manuform.py +++ b/src/dactyl_manuform.py @@ -4100,7 +4100,7 @@ def model_side(side="right"): shape = add([shape, ball]) if plate_pcb_clear: - shape = difference(shape, [plate_pcb_cutouts(side=side)]) + shape = difference(shape, plate_pcb_cutouts(side=side)) main_shape = shape