Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion neo/rawio/blackrockrawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def _parse_header(self):
'nsx_to_load do not match available nsx list'

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