From 01485d91646b0234d0ade2df0b98db2d197ca4fc Mon Sep 17 00:00:00 2001 From: Alessio Buccino Date: Wed, 11 Sep 2024 12:17:36 +0200 Subject: [PATCH] Add space before colons in docs --- src/spikeinterface/widgets/unit_summary.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/spikeinterface/widgets/unit_summary.py b/src/spikeinterface/widgets/unit_summary.py index 851dfa049a..755e60ccbf 100644 --- a/src/spikeinterface/widgets/unit_summary.py +++ b/src/spikeinterface/widgets/unit_summary.py @@ -22,22 +22,22 @@ class UnitSummaryWidget(BaseWidget): Parameters ---------- - sorting_analyzer: SortingAnalyzer + sorting_analyzer : SortingAnalyzer The SortingAnalyzer object - unit_id: int or str + unit_id : int or str The unit id to plot the summary of - unit_colors: dict or None, default: None + unit_colors : dict or None, default: None If given, a dictionary with unit ids as keys and colors as values, - sparsity: ChannelSparsity or None, default: None + sparsity : ChannelSparsity or None, default: None Optional ChannelSparsity to apply. If SortingAnalyzer is already sparse, the argument is ignored - subwidget_kwargs: dict or None, default: None + subwidget_kwargs : dict or None, default: None Parameters for the subwidgets in a nested dictionary - unit_locations: UnitLocationsWidget (see UnitLocationsWidget for details) - unit_waveforms: UnitWaveformsWidget (see UnitWaveformsWidget for details) - unit_waveform_density_map: UnitWaveformDensityMapWidget (see UnitWaveformDensityMapWidget for details) - autocorrelograms: AutoCorrelogramsWidget (see AutoCorrelogramsWidget for details) - amplitudes: AmplitudesWidget (see AmplitudesWidget for details) + unit_locations : UnitLocationsWidget (see UnitLocationsWidget for details) + unit_waveforms : UnitWaveformsWidget (see UnitWaveformsWidget for details) + unit_waveform_density_map : UnitWaveformDensityMapWidget (see UnitWaveformDensityMapWidget for details) + autocorrelograms : AutoCorrelogramsWidget (see AutoCorrelogramsWidget for details) + amplitudes : AmplitudesWidget (see AmplitudesWidget for details) Please note that the unit_colors should not be set in subwidget_kwargs, but directly as a parameter of plot_unit_summary. """