Skip to content

Commit 5d18baa

Browse files
authored
Drop unnecessary file_iterable var
1 parent 0575dc8 commit 5d18baa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

print-hash.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
88

99
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute()
10-
file_iterable = packages_dir.iterdir()
1110

1211
print("Showing hash values of files to be uploaded:")
1312

14-
for file_object in file_iterable:
13+
for file_object in packages_dir.iterdir():
1514
print(file_object)
1615
print("")
1716

0 commit comments

Comments
 (0)