Skip to content

Commit baf6d3f

Browse files
committed
fix max sig length
1 parent be07506 commit baf6d3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/intanrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def _parse_header(self):
220220
else:
221221
self._max_sigs_length = max(
222222
[
223-
len(raw_data) * raw_data.size
223+
raw_data[0].size
224224
for raw_data in self._raw_data.values()
225225
]
226226
)

0 commit comments

Comments
 (0)