Skip to content

Commit ca1d660

Browse files
committed
Update Process enum __str__ method to return the enum value instead of name
1 parent dc7687f commit ca1d660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/platforms/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ class Process(enum.Enum):
404404
IHP_SG13G2 = "ihp_sg13g2"
405405

406406
def __str__(self):
407-
return f'{self.name}'
407+
return f'{self.value}'
408408

409409

410410
class LockFile(pydantic.BaseModel):

0 commit comments

Comments
 (0)