Skip to content

Commit

Permalink
Add support for starved_thermal DRC exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
yaqwsx committed Oct 29, 2023
1 parent c3a8dd0 commit 78d3d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kikit/drc.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class DrcExclusion:
def eqRepr(self) -> Tuple[str, Union[Tuple[str, str], str]]:
if len(self.objects) == 1:
return (self.type, self.objects[0])
if len(self.objects) == 2:
if len(self.objects) == 2 or self.type in ["starved_thermal"]:
return (self.type, tuple(str(x.m_Uuid.AsString()) for x in self.objects))
raise RuntimeError("Unsupported exclusion object count")

Expand Down

0 comments on commit 78d3d0c

Please sign in to comment.