mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-22 08:31:08 -05:00
Drop unnecessary file_iterable
var
This commit is contained in:
parent
0575dc8eab
commit
5d18baa42c
1 changed files with 1 additions and 2 deletions
|
@ -7,11 +7,10 @@ md5 = hashlib.md5()
|
||||||
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
||||||
|
|
||||||
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute()
|
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute()
|
||||||
file_iterable = packages_dir.iterdir()
|
|
||||||
|
|
||||||
print("Showing hash values of files to be uploaded:")
|
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(file_object)
|
||||||
print("")
|
print("")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue