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 467b946 commit d3f5b3cCopy full SHA for d3f5b3c
neo/rawio/blackrockrawio.py
@@ -979,7 +979,7 @@ def __read_nsx_dataheader_variant_b(
979
# use of `int` avoids overflow problem
980
data_size = int(dh["nb_data_points"]) * int(self.__nsx_basic_header[nsx_nb]["channel_count"]) * 2
981
# define new offset (to possible next data block)
982
- offset = data_header[index]["offset_to_data_block"] + data_size
+ offset = int(data_header[index]["offset_to_data_block"]) + data_size
983
984
index += 1
985
0 commit comments