From 39991b72bcce5d8791d6f147249e0807d5b06587 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Tue, 1 Nov 2022 13:42:01 -0300 Subject: [PATCH] [PcbDraw][Fixed] Adapted to the solev_filters change --- kibot/out_pcbdraw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/out_pcbdraw.py b/kibot/out_pcbdraw.py index 36915b34..5fc67605 100644 --- a/kibot/out_pcbdraw.py +++ b/kibot/out_pcbdraw.py @@ -313,7 +313,7 @@ class PcbDrawOptions(VariantOptions): # Empty list: means we don't filter self.show_components = [] else: # A list - self.show_components = self.solve_filters(self.show_components) + self.show_components = self.solve_kf_filters(self.show_components) # Resistors remap/flip if isinstance(self.resistor_remap, type): self.resistor_remap = []