Skip to content

Commit b8a60c5

Browse files
committed
fix plexon2rawio
1 parent c31f1c7 commit b8a60c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

neo/rawio/plexon2rawio/plexon2rawio.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ def _parse_header(self):
208208
# The users of plexon can modify the prefix of the channel names (e.g. `my_prefix` instead of `WB`).
209209
# In that case we use the channel prefix both as stream id and name
210210
stream_name = stream_id_to_stream_name.get(stream_id, stream_id)
211-
signal_streams.append((stream_name, stream_id))
211+
buffer_id = ""
212+
signal_streams.append((stream_name, stream_id, buffer_id))
212213
signal_streams = np.array(signal_streams, dtype=_signal_stream_dtype)
213214
# In plexon buffer is unkown
214215
signal_buffers = np.array([], dtype=_signal_buffer_dtype)

0 commit comments

Comments
 (0)