From 717ba43cfbb0387f6ce311b169a825772f54d295 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sun, 9 Jan 2022 12:53:19 +0100 Subject: [PATCH] Trim the trailing whitespaces in `print-hash.py` --- print-hash.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/print-hash.py b/print-hash.py index 42db92e..499ef63 100755 --- a/print-hash.py +++ b/print-hash.py @@ -10,12 +10,12 @@ for file_object in packages_dir.iterdir(): sha256 = hashlib.sha256() md5 = hashlib.md5() blake2_256 = hashlib.blake2b(digest_size=256 // 8) - + print(file_object) print("") content = file_object.read_bytes() - + sha256.update(content) md5.update(content) blake2_256.update(content)