Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bom/match_generics.zen
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,10 @@ def assign_house_parts(c):
if hasattr(c, "mpn") and c.mpn:
return

# Skip if type is not set
if not hasattr(c, "type"):
return

# Dispatch based on component type
if c.type == "resistor":
assign_house_resistor(c, SERIES_BY_PKG)
Expand Down