We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d18baa commit 977d067Copy full SHA for 977d067
print-hash.py
@@ -2,15 +2,15 @@
2
import pathlib
3
import sys
4
5
-sha256 = hashlib.sha256()
6
-md5 = hashlib.md5()
7
-blake2_256 = hashlib.blake2b(digest_size=256 // 8)
8
-
9
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute()
10
11
print("Showing hash values of files to be uploaded:")
12
13
for file_object in packages_dir.iterdir():
+ sha256 = hashlib.sha256()
+ md5 = hashlib.md5()
+ blake2_256 = hashlib.blake2b(digest_size=256 // 8)
+
14
print(file_object)
15
print("")
16
0 commit comments