Skip to content

Commit 55e3881

Browse files
Merge pull request #1020 from catalystneuro/blackrockio_fix
fixing small list comprehension error
2 parents 9d64537 + 48dd1a1 commit 55e3881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/blackrockrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def _parse_header(self):
315315
'nsx_to_load do not match available nsx list'
316316

317317
# check that all files come from the same specification
318-
all_spec = [self.__nsx_spec[nsx_nb] for nsx in self.nsx_to_load]
318+
all_spec = [self.__nsx_spec[nsx_nb] for nsx_nb in self.nsx_to_load]
319319
if self._avail_files['nev']:
320320
all_spec.append(self.__nev_spec)
321321
assert all(all_spec[0] == spec for spec in all_spec), \

0 commit comments

Comments
 (0)