Remove unnecessary arguments

This commit is contained in:
XANTRONIX 2023-11-20 00:28:05 -05:00
parent 0e6e3bfc0f
commit 4678c46a4f

View file

@ -3,7 +3,7 @@ $fn = 72;
include <keyboard.scad> include <keyboard.scad>
include <dimensions.scad> include <dimensions.scad>
module top_case(key_switch_sizes, pcb_screw_holes) { module top_case() {
keyboard_deck_z_offset = wall_height - keyboard_switch_height; keyboard_deck_z_offset = wall_height - keyboard_switch_height;
accent_width = 1.0000; accent_width = 1.0000;
@ -256,4 +256,4 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
keyboard_deck(wall_width); keyboard_deck(wall_width);
} }
top_case(keyboard_switch_sizes, keyboard_pcb_screw_holes); top_case();