Skip to content

Commit 0199770

Browse files
authored
Merge pull request #1183 from alejoe91/openephys-event-channel-ids
Better `id` for Open Ephys Events
2 parents 90606a6 + 31224dd commit 0199770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/openephysbinaryrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def _parse_header(self):
162162
evt_channel_type = "epoch"
163163
else:
164164
evt_channel_type = "event"
165-
event_channels.append((d['channel_name'], stream_ind, evt_channel_type))
165+
event_channels.append((d['channel_name'], d['channel_name'], evt_channel_type))
166166
event_channels = np.array(event_channels, dtype=_event_channel_dtype)
167167

168168
# create memmap for events

0 commit comments

Comments
 (0)