Skip to content

Commit

Permalink
fix: syn
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 16, 2024
1 parent fb8f69c commit 00a1642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evmspec/data/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def __new__(cls, v):
try:
missing_bytes = _MISSING_BYTES[len(input_bytes)]
except KeyError as e:
raise ValueError(f"{v} is too long: {len(input_bytes)") from e.__cause__
raise ValueError(f"{v} is too long: {len(input_bytes)}") from e.__cause__

return __hb_new__(cls, missing_bytes + input_bytes)

Expand Down

0 comments on commit 00a1642

Please sign in to comment.