Skip to content

Commit dafe677

Browse files
add squash support
1 parent f0a8494 commit dafe677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/aml_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def main(filepath: str, output_path: str):
9090
partitions_verify = []
9191
with open(filepath, "rb") as f:
9292
header = AmlHeader()
93-
print(d := f.read(len(header)))
93+
d = f.read(len(header))
9494
header.unpack(d)
9595
if header.magic != amlogic_magic:
9696
raise Exception("magic is not amlogic magic.")

0 commit comments

Comments
 (0)