Skip to content

Commit a1ac529

Browse files
authored
Merge pull request #1765 from yagui/fix/raw-binary-read
RawBinarySignalRawIO: Fix hard-coded dtype during memmap generation
2 parents c521f97 + 287b725 commit a1ac529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/rawbinarysignalrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def _parse_header(self):
8989
self._buffer_descriptions[0][0][buffer_id] = {
9090
"type": "raw",
9191
"file_path": str(self.filename),
92-
"dtype": "uint16",
92+
"dtype": self.dtype,
9393
"order": "C",
9494
"file_offset": self.bytesoffset,
9595
"shape": shape,

0 commit comments

Comments
 (0)