diff --git a/scripts/verify-checksum-models.py b/scripts/verify-checksum-models.py index 811372e47..1f1b3d24f 100644 --- a/scripts/verify-checksum-models.py +++ b/scripts/verify-checksum-models.py @@ -6,13 +6,13 @@ def sha256sum(file): b = bytearray(block_size) file_hash = hashlib.sha256() mv = memoryview(b) - with open(file, 'rb', buffering=0) as f: + with open(file, 'rb', buffering=0) as f: while True: n = f.readinto(mv) if not n: break file_hash.update(mv[:n]) - + return file_hash.hexdigest() # Define the path to the llama directory (parent folder of script directory)