Skip to content

Commit

Permalink
Fix quotes in f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
gtca committed Jan 13, 2025
1 parent 23074e3 commit e4ee9fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/muon/_core/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,10 @@ def _set_mofa_data_from_mudata(
# If everything successful, print verbose message
for m in range(M):
for g in range(G):
view_name = model.data_opts["views_names"][m]
group_name = model.data_opts["groups_names"][g]
print(
f"Loaded view='{model.data_opts["views_names"][m]}' group='{model.data_opts["groups_names"][g]}' with N={str(n_grouped[g])} samples and D={str(D[m])} features..."
f"Loaded view='{view_name}' group='{group_name}' with N={str(n_grouped[g])} samples and D={str(D[m])} features..."
)
print("\n")

Expand Down

0 comments on commit e4ee9fe

Please sign in to comment.