Skip to content

Commit

Permalink
(Eagle) Fix handling of DNP's via assembly variant
Browse files Browse the repository at this point in the history
  • Loading branch information
Funkenjaeger authored and qu1ck committed Aug 22, 2023
1 parent 49c6272 commit 07a3d20
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions InteractiveHtmlBom/ecad/fusion_eagle.py
Expand Up @@ -800,7 +800,7 @@ def _parse(self, brdfile):
'value'],
footprint=el.attrib['package'],
layer=layer,
attr=None,
attr=None if populate else 'Virtual',
extra_fields=extra_fields)

# For component, get footprint data
Expand Down Expand Up @@ -852,8 +852,7 @@ def _parse(self, brdfile):
populate)
self._element_refdes_to_silk(el, package)

if populate:
self.components.append(comp)
self.components.append(comp)

# Edges & silkscreen (independent of elements)
for el in plain.iter():
Expand Down

0 comments on commit 07a3d20

Please sign in to comment.