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 40b07ed commit fd3af8eCopy full SHA for fd3af8e
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