File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ classifiers = [
1616]
1717
1818dependencies = [
19- " spikeinterface[full]>=0.103 .0" ,
19+ " spikeinterface[full]>=0.104 .0" ,
2020 " markdown"
2121]
2222
Original file line number Diff line number Diff line change 1111from spikeinterface .core import get_template_extremum_channel
1212from spikeinterface .core .sorting_tools import spike_vector_to_indices
1313from spikeinterface .curation import validate_curation_dict
14- from spikeinterface .curation .curation_model import CurationModel
14+ from spikeinterface .curation .curation_model import Curation
1515from spikeinterface .widgets .utils import make_units_table_from_analyzer
1616
1717from .curation_tools import add_merge , default_label_definitions , empty_curation_data
@@ -393,7 +393,7 @@ def __init__(
393393 print ('Curation quality labels are the default ones' )
394394 self .has_default_quality_labels = True
395395
396- curation_data = CurationModel (** curation_data ).model_dump ()
396+ curation_data = Curation (** curation_data ).model_dump ()
397397 self .curation_data = curation_data
398398
399399 def check_is_view_possible (self , view_name ):
@@ -852,7 +852,7 @@ def construct_final_curation(self):
852852 d ["format_version" ] = "2"
853853 d ["unit_ids" ] = self .unit_ids .tolist ()
854854 d .update (self .curation_data .copy ())
855- model = CurationModel (** d )
855+ model = Curation (** d )
856856 return model
857857
858858 def set_curation_data (self , curation_data ):
You can’t perform that action at this time.
0 commit comments