Skip to content

Commit 97bd49d

Browse files
authored
Merge pull request #1803 from NeuralEnsemble/black-formatting
Black formatting
2 parents fd0ac2b + e0a7ae8 commit 97bd49d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

neo/rawio/axonrawio.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -984,10 +984,7 @@ def _parse_abf_v2(f, header_description):
984984
header["dictEpochInfoPerDAC"] = {}
985985
for i in range(sections["EpochPerDACSection"]["llNumEntries"]):
986986
# read DACInfo
987-
f.seek(
988-
sections["EpochPerDACSection"]["uBlockIndex"] * BLOCKSIZE
989-
+ sections["EpochPerDACSection"]["uBytes"] * i
990-
)
987+
f.seek(sections["EpochPerDACSection"]["uBlockIndex"] * BLOCKSIZE + sections["EpochPerDACSection"]["uBytes"] * i)
991988
EpochInfoPerDAC = {}
992989
for key, fmt in EpochInfoPerDACDescription:
993990
val = f.read_f(fmt)

0 commit comments

Comments
 (0)