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 652335f commit 01b26f9Copy full SHA for 01b26f9
neo/rawio/openephysbinaryrawio.py
@@ -292,8 +292,8 @@ def _parse_header(self):
292
rising_indices.extend(rising)
293
falling_indices.extend(falling)
294
295
- rising_indices = np.array(rising_indices, dtype=np.intp)
296
- falling_indices = np.array(falling_indices, dtype=np.intp)
+ rising_indices = np.array(rising_indices, dtype=np.int64)
+ falling_indices = np.array(falling_indices, dtype=np.int64)
297
298
# Sort the indices to maintain chronological order
299
sorted_order = np.argsort(rising_indices)
0 commit comments