Skip to content

Commit

Permalink
Update sized_byte_class.py
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Oct 23, 2024
1 parent 35237b7 commit 1d558f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wheel/python/chia_rs/sized_byte_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def fill(cls: Type[_T_SizedBytes], blob: bytes, fill: bytes, align: Literal["<",

div, mod = divmod(cls._size - len(blob), fill_length)
if mod != 0:
raise ValueError("invalid fill value, range to be filled must be multiple of fil size")
raise ValueError("invalid fill value, range to be filled must be multiple of fill size")

all_fill = fill * div
if align == "<":
Expand Down

0 comments on commit 1d558f1

Please sign in to comment.