mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-29 03:51:01 -05:00
Suppress S324 @ print-hash.py
This commit is contained in:
parent
a047f618a1
commit
b02d39bbf5
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ print("Showing hash values of files to be uploaded:")
|
|||
|
||||
for file_object in packages_dir.iterdir():
|
||||
sha256 = hashlib.sha256()
|
||||
md5 = hashlib.md5()
|
||||
md5 = hashlib.md5() # noqa: S324; only use for reference
|
||||
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
||||
|
||||
print(file_object)
|
||||
|
|
Loading…
Reference in a new issue