summaryrefslogtreecommitdiff
path: root/gerbonara/cad/kicad/footprints.py
diff options
context:
space:
mode:
Diffstat (limited to 'gerbonara/cad/kicad/footprints.py')
-rw-r--r--gerbonara/cad/kicad/footprints.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/gerbonara/cad/kicad/footprints.py b/gerbonara/cad/kicad/footprints.py
index 24488f4..82c0d62 100644
--- a/gerbonara/cad/kicad/footprints.py
+++ b/gerbonara/cad/kicad/footprints.py
@@ -612,14 +612,9 @@ class Footprint:
def __after_parse__(self, parent):
- self.properties = {prop.key: prop for prop in self.properties}
-
for pad in self.pads:
pad.footprint = self
- def __before_sexp__(self):
- self.properties = list(self.properties.values())
-
def property_value(self, key, default=_MISSING):
if default is not _MISSING and key not in self.properties:
return default