Skip to content

Commit

Permalink
Update src/spikeinterface/core/base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin authored Jul 2, 2024
1 parent e2b1a3b commit c95c435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spikeinterface/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __init__(self, main_ids: Sequence) -> None:

# "main_ids" will either be channel_ids or units_ids
# They are used for properties
self._main_ids = np.asarray(main_ids)
self._main_ids = np.array(main_ids)
if len(self._main_ids) > 0:
assert (
self._main_ids.dtype.kind in "uiSU"
Expand Down

0 comments on commit c95c435

Please sign in to comment.