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 40b07ed + fd3af8e commit 3b5488cCopy full SHA for 3b5488c
neo/rawio/blackrockrawio.py
@@ -986,7 +986,8 @@ def __read_nsx_dataheader_variant_c(
986
index = 0
987
988
if offset is None:
989
- offset = self.__nsx_basic_header[nsx_nb]["bytes_in_headers"]
+ # This is read as an uint32 numpy scalar from the header so we transform it to python int
990
+ offset = int(self.__nsx_basic_header[nsx_nb]["bytes_in_headers"])
991
992
ptp_dt = [
993
("reserved", "uint8"),
0 commit comments