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 e962318 commit 8d32b9bCopy full SHA for 8d32b9b
neo/rawio/openephysbinaryrawio.py
@@ -275,7 +275,8 @@ def _parse_header(self):
275
276
# Add a buffer slice for the sync channel
277
sync_channel_name = info["channels"][-1]["channel_name"]
278
- self._stream_buffer_slice[sync_channel_name] = slice(-1, None)
+ stream_name = f"{sync_channel_name}-{str(stream_id)}"
279
+ self._stream_buffer_slice[stream_name] = slice(-1, None)
280
else:
281
self._stream_buffer_slice[stream_id] = None
282
0 commit comments