Skip to content

Commit 900970b

Browse files
authored
add parentheses to math
1 parent 910de7d commit 900970b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/plexonrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _parse_header(self):
138138
bl_header = data[pos : pos + 16].view(DataBlockHeader)[0]
139139
number_of_waveforms = int(bl_header["NumberOfWaveforms"])
140140
number_of_words_in_waveform = int(bl_header["NumberOfWordsInWaveform"])
141-
length =number_of_waveforms * number_of_words_in_waveform * 2 + 16
141+
length = (number_of_waveforms * number_of_words_in_waveform * 2 ) + 16
142142
bl_type = int(bl_header["Type"])
143143
chan_id = int(bl_header["Channel"])
144144
block_pos[bl_type][chan_id].append(pos)

0 commit comments

Comments
 (0)