klippy: fix typos in python code (#6989)

Signed-off-by: Thijs Triemstra <info@collab.nl>
This commit is contained in:
Thijs Triemstra
2025-07-25 18:31:19 +02:00
committed by GitHub
parent ef4c76fe94
commit 60879fd298
24 changed files with 43 additions and 43 deletions

View File

@@ -76,7 +76,7 @@ def encode_file(input, output_file, file_length):
xor_crc = 0xef3d4323;
# the input file is exepcted to be in chunks of 0x800
# the input file is expected to be in chunks of 0x800
# so round the size
while len(input_file) % block_size != 0:
input_file.extend(b'0x0')