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 6a3a52d commit cf543aaCopy full SHA for cf543aa
neo/rawio/spikeglxrawio.py
@@ -566,7 +566,7 @@ def extract_stream_info(meta_file, meta):
566
info["digital_channels"] = []
567
info["analog_channels"] = [channel for channel in info["channel_names"] if not channel.startswith("XD")]
568
# Digital/event channels are encoded within the digital word, so that will need more handling
569
- if meta["niXDChans1"] != "":
+ if meta.get("niXDChans1", "") != "":
570
nixd_chans1_items = meta["niXDChans1"].split(",")
571
for item in nixd_chans1_items:
572
if ":" in item:
0 commit comments