Skip to content

Commit 2c54203

Browse files
committed
fix wrong regex
1 parent 29f10ac commit 2c54203

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
@@ -1476,7 +1476,7 @@ def _match_nsx_and_nev_segment_ids(self, nsx_nb):
14761476
# replacing event ids by matched event ids in place
14771477
for k, (data, ev_ids) in self.nev_data.items():
14781478
if len(ev_ids):
1479-
ev_ids[:] = np.vectorize(new_nev_segment_id_mapping._getitem__)(ev_ids)
1479+
ev_ids[:] = np.vectorize(new_nev_segment_id_mapping.__getitem__)(ev_ids)
14801480

14811481
def _read_nev_data_variant_a(self):
14821482
"""

0 commit comments

Comments
 (0)