Skip to content

Commit

Permalink
logging typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
meandmytram committed Nov 27, 2024
1 parent d883295 commit c7ed2d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/decoding/classical_ldpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def save_experiment_data(data, num_bits, chi_max, error_rate, seed):
with open(file_key, "wb") as pickle_file:
pickle.dump(data, pickle_file)
logging.info(
f"Saved experiment data for {file_key} with"
f"Saved experiment data for {file_key} with "
f"{np.mean(data['failures'])*100:.2f}% failure rate."
)

Expand Down
2 changes: 1 addition & 1 deletion examples/decoding/quantum_surface.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def save_experiment_data(data, lattice_size, chi_max, error_rate, error_model, s
with open(file_key, "wb") as pickle_file:
pickle.dump(data, pickle_file)
logging.info(
f"Saved experiment data for {file_key} with"
f"Saved experiment data for {file_key} with "
f"{np.mean(data['failures'])*100:.2f}% failure rate."
)

Expand Down

0 comments on commit c7ed2d6

Please sign in to comment.