Skip to content

Commit e2a937c

Browse files
committed
minor : fix trailing whitespaces
1 parent b0c71c7 commit e2a937c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/verify-checksum-models.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ def sha256sum(file):
66
b = bytearray(block_size)
77
file_hash = hashlib.sha256()
88
mv = memoryview(b)
9-
with open(file, 'rb', buffering=0) as f:
9+
with open(file, 'rb', buffering=0) as f:
1010
while True:
1111
n = f.readinto(mv)
1212
if not n:
1313
break
1414
file_hash.update(mv[:n])
15-
15+
1616
return file_hash.hexdigest()
1717

1818
# Define the path to the llama directory (parent folder of script directory)

0 commit comments

Comments
 (0)