Skip to content

Commit

Permalink
make lib_corner optional with default None
Browse files Browse the repository at this point in the history
  • Loading branch information
elamdf committed Feb 10, 2024
1 parent 9cca4eb commit ff7ea7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hammer/tech/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class Supplies(BaseModel):
class SpiceModelFile(BaseModel):
# Struct that holds information about Spice model files.
path: str
lib_corner: str
lib_corner: Optional[str] = None

def to_setting(self) -> dict:
output = {'path': str(self.path)}
Expand Down

0 comments on commit ff7ea7c

Please sign in to comment.