Skip to content

Commit 717ba43

Browse files
committed
Trim the trailing whitespaces in print-hash.py
1 parent 4992a00 commit 717ba43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

print-hash.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
sha256 = hashlib.sha256()
1111
md5 = hashlib.md5()
1212
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
13-
13+
1414
print(file_object)
1515
print("")
1616

1717
content = file_object.read_bytes()
18-
18+
1919
sha256.update(content)
2020
md5.update(content)
2121
blake2_256.update(content)

0 commit comments

Comments
 (0)