Skip to content

Commit

Permalink
Same everywhere, drop
Browse files Browse the repository at this point in the history
  • Loading branch information
bra-fsn committed May 30, 2024
1 parent 84d3870 commit ca9ef9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inspector/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ def openssl(meta, task, task_dir) -> None:
algo = res[2]
speed = res[3:]
for i in range(len(blocksizes)):
parsed_output.append(dict(algo=algo, block_size=blocksizes[i], speed=float(speed[i]), speed_unit="bytes/sec"))
parsed_output.append(dict(algo=algo, block_size=blocksizes[i], speed=float(speed[i])))
with open(os.path.join(task_dir, "parsed.json"), "w") as f:
json.dump(parsed_output, f, indent=2)

0 comments on commit ca9ef9e

Please sign in to comment.