Skip to content

Commit

Permalink
remove unnecessary defaulted param
Browse files Browse the repository at this point in the history
  • Loading branch information
oconnor663 committed Oct 29, 2021
1 parent 673004a commit 0695be4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pure_blake3.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,4 +350,4 @@ def finalize(self, length: int = OUT_LEN) -> bytes:
hasher = Hasher()
while buf := sys.stdin.buffer.read(65536):
hasher.update(buf)
print(hasher.finalize(OUT_LEN).hex())
print(hasher.finalize().hex())

0 comments on commit 0695be4

Please sign in to comment.