Skip to content

Commit 7a0a992

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a7c205a commit 7a0a992

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/spikeinterface/preprocessing/phase_shift.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,7 @@ def _get_traces_fir(self, start_frame, end_frame, channel_indices):
231231
left_pad = half - (start_frame - fetch_start)
232232
right_pad = half - (fetch_end - end_frame)
233233

234-
traces = parent.get_traces(
235-
start_frame=fetch_start, end_frame=fetch_end, channel_indices=channel_indices
236-
)
234+
traces = parent.get_traces(start_frame=fetch_start, end_frame=fetch_end, channel_indices=channel_indices)
237235

238236
if left_pad > 0 or right_pad > 0:
239237
full_len = (end_frame - start_frame) + 2 * half

0 commit comments

Comments
 (0)