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 44c0388 commit 0c68b22Copy full SHA for 0c68b22
neo/rawio/intanrawio.py
@@ -105,7 +105,7 @@ def _parse_header(self):
105
signal_channels = []
106
for c, chan_info in enumerate(self._ordered_channels):
107
name = chan_info["custom_channel_name"]
108
- chan_id = chan_info["native_channel_name"]
+ channel_id = chan_info["native_channel_name"]
109
if chan_info["signal_type"] == 20:
110
# exception for temperature
111
sig_dtype = "int16"
@@ -115,7 +115,7 @@ def _parse_header(self):
115
signal_channels.append(
116
(
117
name,
118
- chan_id,
+ channel_id,
119
chan_info["sampling_rate"],
120
sig_dtype,
121
chan_info["units"],
0 commit comments