mirror of
https://gitcode.com/gh_mirrors/gh/gh-action-pypi-publish.git
synced 2026-07-02 18:27:49 +00:00
Drop unnecessary file_iterable var
This commit is contained in:
committed by
GitHub
parent
0575dc8eab
commit
5d18baa42c
+1
-2
@@ -7,11 +7,10 @@ md5 = hashlib.md5()
|
||||
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
||||
|
||||
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute()
|
||||
file_iterable = packages_dir.iterdir()
|
||||
|
||||
print("Showing hash values of files to be uploaded:")
|
||||
|
||||
for file_object in file_iterable:
|
||||
for file_object in packages_dir.iterdir():
|
||||
print(file_object)
|
||||
print("")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user