Skip to content

Commit 9d39fe8

Browse files
committed
trigger tests agian
1 parent dcafe34 commit 9d39fe8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

neo/rawio/spikeglxrawio.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,13 +378,14 @@ def get_segment_tuple(info):
378378

379379

380380
for info in info_list:
381-
# we have two main device types `imec` and `nidq` that the user has control of enabling
381+
# device_kind is imec, nidq
382382
if info.get("device_kind") == "imec":
383383
info["device_index"] = info["device"].split("imec")[-1]
384384
else:
385385
info["device_index"] = "" # TODO: Handle multi nidq case, maybe use meta["typeNiEnabled"]
386386

387-
# Define stream base on device [imec|nidq], device_index and stream_kind [ap|lf] for imec
387+
# Define stream base on device_kind [imec|nidq], device_index and stream_kind [ap|lf] for imec
388+
# Stream format is "{device_kind}{device_index}.{stream_kind}"
388389
for info in info_list:
389390
device_kind = info["device_kind"]
390391
device_index = info["device_index"]

0 commit comments

Comments
 (0)