Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-langfield committed Apr 18, 2024
1 parent 15ba176 commit b982381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ibldsp/waveform_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def _make_wfs_table(
# exclude spikes without a buffer on either end
# of recording
allowed_idx = (spike_samples > trough_offset) & (
spike_samples < sr.ns - (spike_length_samples - trough_offset)
spike_samples < sr.ns - (spike_length_samples - trough_offset)
)

rng = np.random.default_rng(seed=2024) # numpy 1.23.5
Expand Down

0 comments on commit b982381

Please sign in to comment.