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 8720bb2 + 8ffb225 commit db9eca8Copy full SHA for db9eca8
neo/rawio/neuralynxrawio/neuralynxrawio.py
@@ -263,7 +263,7 @@ def _parse_header(self):
263
t_start = copy.copy(file_mmap[0][0])
264
else: # empty file
265
t_start = 0
266
- stream_prop = (info["sampling_rate"], n_packets, t_start)
+ stream_prop = (float(info["sampling_rate"]), int(n_packets), float(t_start))
267
if stream_prop not in stream_props:
268
stream_props[stream_prop] = {"stream_id": len(stream_props), "filenames": [filename]}
269
else:
0 commit comments