Skip to content

Commit

Permalink
Fix default
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 committed Oct 17, 2023
1 parent fec5316 commit fb5b1ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spikeinterface/sortingcomponents/clustering/split.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def split_clusters(
n_jobs = job_kwargs["n_jobs"]
mp_context = job_kwargs.get("mp_context", None)
progress_bar = job_kwargs["progress_bar"]
max_threads_per_process = job_kwargs.get("max_threads_per_process", None)
max_threads_per_process = job_kwargs.get("max_threads_per_process", 1)

original_labels = peak_labels
peak_labels = peak_labels.copy()
Expand Down

0 comments on commit fb5b1ef

Please sign in to comment.