Skip to content

Commit

Permalink
Update src/spikeinterface_pipelines/postprocessing/params.py
Browse files Browse the repository at this point in the history
Co-authored-by: Alessio Buccino <[email protected]>
  • Loading branch information
luiztauffer and alejoe91 authored Jan 12, 2024
1 parent 2e6ae9b commit 426c9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spikeinterface_pipelines/postprocessing/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class QMParams(BaseModel):
# TODO - fill in metric_names defauklt value with all the metric names
class QualityMetrics(BaseModel):
qm_params: QMParams = Field(default=QMParams(), description="Quality metric parameters.")
metric_names: List[str] = Field(default=[], description="List of metric names to compute.")
metric_names: Optional[List[str]] = Field(default=None, description="List of metric names to compute. If None, all available metrics are computed.")
n_jobs: int = Field(default=1, description="Number of jobs.")


Expand Down

0 comments on commit 426c9c3

Please sign in to comment.