We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d955ab7 commit 16c15b3Copy full SHA for 16c15b3
mne_bids_pipeline/steps/preprocessing/_05b_sync_eyelink.py
@@ -234,7 +234,7 @@ def sync_eyelink(
234
# Also add ET annotations to EEG
235
# first mark et sync event descriptions so we can differentiate them later
236
# TODO: For now all ET events will be marked with ET and added to the EEG annotations, maybe later filter for certain events only
237
- raw_et.annotations.description = map(lambda desc: "ET_" + desc, raw_et.annotations.description)
+ raw_et.annotations.description = np.array(list(map(lambda desc: "ET_" + desc, raw_et.annotations.description)))
238
raw.set_annotations(mne.annotations._combine_annotations(raw.annotations,
239
raw_et.annotations,
240
0,
0 commit comments