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 c31f1c7 commit b8a60c5Copy full SHA for b8a60c5
neo/rawio/plexon2rawio/plexon2rawio.py
@@ -208,7 +208,8 @@ def _parse_header(self):
208
# The users of plexon can modify the prefix of the channel names (e.g. `my_prefix` instead of `WB`).
209
# In that case we use the channel prefix both as stream id and name
210
stream_name = stream_id_to_stream_name.get(stream_id, stream_id)
211
- signal_streams.append((stream_name, stream_id))
+ buffer_id = ""
212
+ signal_streams.append((stream_name, stream_id, buffer_id))
213
signal_streams = np.array(signal_streams, dtype=_signal_stream_dtype)
214
# In plexon buffer is unkown
215
signal_buffers = np.array([], dtype=_signal_buffer_dtype)
0 commit comments