Skip to content

Commit

Permalink
MAINT: Hotfix for dev_head_t
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jun 3, 2021
1 parent 3b85ebb commit dbfaeac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tutorials/io/60_ctf_bst_auditory.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@
# other functions require the data to be preloaded into memory.
raw = read_raw_ctf(raw_fname1)
n_times_run1 = raw.n_times
mne.io.concatenate_raws([raw, read_raw_ctf(raw_fname2)])

# Here we ignore that these have different device<->head transforms
mne.io.concatenate_raws(
[raw, read_raw_ctf(raw_fname2)], on_mismatch='ignore')
raw_erm = read_raw_ctf(erm_fname)

###############################################################################
Expand Down

0 comments on commit dbfaeac

Please sign in to comment.