From 6e93f507888e42fd7cecb4c627afff8c34078cef Mon Sep 17 00:00:00 2001 From: Ariel Burman Date: Sat, 6 Sep 2025 16:04:54 -0300 Subject: [PATCH] fix rawbinary reader --- neo/rawio/rawbinarysignalrawio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/rawio/rawbinarysignalrawio.py b/neo/rawio/rawbinarysignalrawio.py index 44bc3a7ee..a907a595e 100644 --- a/neo/rawio/rawbinarysignalrawio.py +++ b/neo/rawio/rawbinarysignalrawio.py @@ -89,7 +89,7 @@ def _parse_header(self): self._buffer_descriptions[0][0][buffer_id] = { "type": "raw", "file_path": str(self.filename), - "dtype": "uint16", + "dtype": self.dtype, "order": "C", "file_offset": self.bytesoffset, "shape": shape,