diff --git a/print-hash.py b/print-hash.py index 499ef63..3f192b6 100644 --- a/print-hash.py +++ b/print-hash.py @@ -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)