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 7c11c7c commit 26672cdCopy full SHA for 26672cd
neo/rawio/blackrockrawio.py
@@ -276,8 +276,8 @@ def _parse_header(self):
276
self.internal_unit_ids = [] # pair of chan['packet_id'], spikes['unit_class_nb']
277
for i in range(len(self.__nev_ext_header[b"NEUEVWAV"])):
278
279
- # electrode_id values are stored at uint16 which can be overflowed when
280
- # multiplying by 1000 below. We convert to a regular pyton into which
+ # electrode_id values are stored at uint16 which can overflow when
+ # multiplying by 1000 below. We convert to a regular python int which
281
# won't overflow
282
channel_id = int(self.__nev_ext_header[b"NEUEVWAV"]["electrode_id"][i])
283
0 commit comments