Skip to content

Commit

Permalink
MAINT: Fix bug with item
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Sep 26, 2023
1 parent 5dac5cb commit cd0c750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mne_bids_pipeline/_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def plot_time_by_time_decoding_t_values(decoding_data):
# We squeeze() to make Matplotlib happy.
all_times = decoding_data["cluster_all_times"].squeeze()
all_t_values = decoding_data["cluster_all_t_values"].squeeze()
t_threshold = decoding_data["cluster_t_threshold"]
t_threshold = decoding_data["cluster_t_threshold"].item()
decim = decoding_data["decim"]

fig, ax = plt.subplots(constrained_layout=True)
Expand Down

0 comments on commit cd0c750

Please sign in to comment.