Skip to content

Commit

Permalink
FIX: na_rep for reports
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Feb 16, 2024
1 parent 5e23fe0 commit db7f4c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mne/report/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -3842,9 +3842,10 @@ def _add_epochs_metadata(self, *, epochs, section, tags, replace):
index=False,
show_dimensions=True,
justify="unset",
float_format=lambda x: f"{round(x, 3):.3f}",
float_format=lambda x: f"{x:.3f}",
classes="table table-hover table-striped "
"table-sm table-responsive small",
na_rep="",
)
del metadata

Expand Down

0 comments on commit db7f4c3

Please sign in to comment.