Skip to content

Commit

Permalink
Merge pull request The-OpenROAD-Project#4760 from eltociear/patch-1
Browse files Browse the repository at this point in the history
Update mpl_aux.py
  • Loading branch information
maliberty authored Mar 10, 2024
2 parents c008957 + a92da6c commit 59e8d6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mpl/test/mpl_aux.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def is_pos_int(x):
elif isinstance(x, int) and x > 0 :
return True
else:
utl.error(utl.GPL, 507, f"TypeError: {x} is not a postive integer")
utl.error(utl.GPL, 507, f"TypeError: {x} is not a positive integer")
return False


Expand All @@ -111,5 +111,5 @@ def is_pos_float(x):
elif isinstance(x, float) and x >= 0 :
return True
else:
utl.error(utl.MPL, 202, f"TypeError: {x} is not a postive float")
utl.error(utl.MPL, 202, f"TypeError: {x} is not a positive float")
return False

0 comments on commit 59e8d6f

Please sign in to comment.