We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a8494 commit dafe677Copy full SHA for dafe677
src/core/aml_image.py
@@ -90,7 +90,7 @@ def main(filepath: str, output_path: str):
90
partitions_verify = []
91
with open(filepath, "rb") as f:
92
header = AmlHeader()
93
- print(d := f.read(len(header)))
+ d = f.read(len(header))
94
header.unpack(d)
95
if header.magic != amlogic_magic:
96
raise Exception("magic is not amlogic magic.")
0 commit comments