Skip to content

Commit 48d816b

Browse files
committed
fix aggregation with type
1 parent 7db4647 commit 48d816b

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/spikeinterface/core/channelsaggregationrecording.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def __init__(self, recording_list, renamed_channel_ids=None):
3030
), "'renamed_channel_ids' doesn't have the right size or has duplicates!"
3131
channel_ids = list(renamed_channel_ids)
3232
else:
33+
3334
# Explicitly check if all channel_ids arrays are either all integers or all strings.
3435
all_int_dtype = all(np.issubdtype(rec.channel_ids.dtype, np.integer) for rec in recording_list)
3536
all_str_dtype = all(np.issubdtype(rec.channel_ids.dtype, np.str_) for rec in recording_list)

0 commit comments

Comments
 (0)