Skip to content

Commit 30f5f9c

Browse files
committed
Fix pandas query
1 parent 6d88838 commit 30f5f9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/spikeinterface/extractors/phykilosortextractors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def __init__(
5656
spike_clusters = np.atleast_1d(spike_clusters.squeeze())
5757

5858
clust_id = np.unique(spike_clusters)
59-
unique_unit_ids = list(clust_id)
59+
unique_unit_ids = [int(c) for c in clust_id]
6060
params = read_python(str(phy_folder / "params.py"))
6161
sampling_frequency = params["sample_rate"]
6262

0 commit comments

Comments
 (0)