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 fd0ac2b + e0a7ae8 commit 97bd49dCopy full SHA for 97bd49d
neo/rawio/axonrawio.py
@@ -984,10 +984,7 @@ def _parse_abf_v2(f, header_description):
984
header["dictEpochInfoPerDAC"] = {}
985
for i in range(sections["EpochPerDACSection"]["llNumEntries"]):
986
# read DACInfo
987
- f.seek(
988
- sections["EpochPerDACSection"]["uBlockIndex"] * BLOCKSIZE
989
- + sections["EpochPerDACSection"]["uBytes"] * i
990
- )
+ f.seek(sections["EpochPerDACSection"]["uBlockIndex"] * BLOCKSIZE + sections["EpochPerDACSection"]["uBytes"] * i)
991
EpochInfoPerDAC = {}
992
for key, fmt in EpochInfoPerDACDescription:
993
val = f.read_f(fmt)
0 commit comments