From b02d39bbf542501981e3f74e97299c6f4f48396c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Thu, 16 May 2024 17:23:10 +0200 Subject: [PATCH] Suppress S324 @ `print-hash.py` --- print-hash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)