Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
tothtamas28 committed Oct 16, 2023
1 parent c5d61ea commit 1f5ae97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/kdist/_kdist.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def clean(target: str | None = None) -> Path:
def get(target: str) -> Path:
res = which(target)
if not res.exists():
raise ValueError('Target is not built: {target}')
raise ValueError(f'Target is not built: {target}')
return res


Expand Down

0 comments on commit 1f5ae97

Please sign in to comment.