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.
2 parents 0e89241 + 707daf7 commit 714c9c2Copy full SHA for 714c9c2
neo/rawio/blackrockrawio.py
@@ -438,8 +438,7 @@ def _parse_header(self):
438
# Find maximal and minimal time for each nev segment
439
for k, (data, ev_ids) in self.nev_data.items():
440
for i in np.unique(ev_ids):
441
- mask = [ev_ids == i]
442
- curr_data = data[mask]
+ curr_data = data[ev_ids == i]
443
if curr_data.size > 0:
444
if max(curr_data['timestamp']) >= max_nev_times.get(i, 0):
445
max_nev_times[i] = max(curr_data['timestamp'])
0 commit comments