Suppress S324 @ `print-hash.py`
This commit is contained in:
parent
a047f618a1
commit
b02d39bbf5
|
@ -8,7 +8,7 @@ print("Showing hash values of files to be uploaded:")
|
||||||
|
|
||||||
for file_object in packages_dir.iterdir():
|
for file_object in packages_dir.iterdir():
|
||||||
sha256 = hashlib.sha256()
|
sha256 = hashlib.sha256()
|
||||||
md5 = hashlib.md5()
|
md5 = hashlib.md5() # noqa: S324; only use for reference
|
||||||
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
blake2_256 = hashlib.blake2b(digest_size=256 // 8)
|
||||||
|
|
||||||
print(file_object)
|
print(file_object)
|
||||||
|
|
Loading…
Reference in New Issue