Fix docstring

This commit is contained in:
jaknapper 2026-02-24 16:49:43 +00:00 committed by Julian Stirling
parent b211cfd4c5
commit 80760a7d8f

View file

@ -245,11 +245,9 @@ class RectGridWorkflow(ScanWorkflow[SettingModelType], Generic[SettingModelType]
) -> tuple[SettingModelType, Optional[StitchingSettings]]: ) -> tuple[SettingModelType, Optional[StitchingSettings]]:
"""Return the scan settings and the stitching settings. """Return the scan settings and the stitching settings.
- `images_dir` is used to create the CaptureParams stored in the settings model. :param images_dir: The directory that images are to be written to.
- The returned SettingModelType now contains param objects: :return: A tuple containing the settings model for this workflow and the
* capture_params: CaptureParams settings model for stitching.
* autofocus_params: AutofocusParams
* stack_params: StackParams (if relevant)
""" """
stitching_settings = self._get_stitching_settings_model() stitching_settings = self._get_stitching_settings_model()
dx, dy = self._calc_displacement_from_overlap(self.overlap) dx, dy = self._calc_displacement_from_overlap(self.overlap)