Skip to content

Commit

Permalink
PEP8 compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
b-grimaud committed Nov 15, 2023
1 parent 029a790 commit 9a83fda
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions neo/rawio/biocamrawio.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,10 @@ def readHDF5t_100_i(rf, t0, t1, nch):


def readHDF5t_101(rf, t0, t1, nch):
return rf['3BData/Raw'][nch * t0:nch * t1].reshape((t1 - t0, nch), order='C').astype(np.int16) - 2048
return rf['3BData/Raw'][nch * t0:nch * t1].reshape((t1 - t0, nch), order='C')\
.astype(np.int16) - 2048


def readHDF5t_101_i(rf, t0, t1, nch):
return 2048 - rf['3BData/Raw'][nch * t0:nch * t1].reshape((t1 - t0, nch), order='C').astype(np.int16)
return 2048 - rf['3BData/Raw'][nch * t0:nch * t1].reshape((t1 - t0, nch), order='C')\
.astype(np.int16)

0 comments on commit 9a83fda

Please sign in to comment.