From 8de3982dad8fc7638f73944aec49fcf7ce514c3d Mon Sep 17 00:00:00 2001 From: Diego Capusotto Date: Fri, 17 Dec 2021 15:45:59 -0300 Subject: [PATCH] Added component fields validation to v6 loader. --- kibot/kicad/v6_sch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kibot/kicad/v6_sch.py b/kibot/kicad/v6_sch.py index b40f13a0..2eb5083e 100644 --- a/kibot/kicad/v6_sch.py +++ b/kibot/kicad/v6_sch.py @@ -1155,5 +1155,7 @@ class SchematicV6(Schematic): lib_symbol = LibComponent() comp.lib_symbol = lib_symbol comp.is_power = lib_symbol.is_power + # Now we have all the data + comp._validate() # Add it to the list self.components.append(comp)