Merge branch 'modes-docstring' into 'v3'

Changed docstring for capture modes

See merge request openflexure/openflexure-microscope-server!639
This commit is contained in:
Julian Stirling 2026-07-02 12:29:10 +00:00
commit cbf0c30607
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View file

@ -628,7 +628,10 @@ class BaseCamera(OFMThing, ABC):
@lt.property
def capture_modes(self) -> Mapping[str, CaptureMode]:
"""Modes the camera can use for capturing."""
"""Modes the camera can use for capturing.
Cameras can override this to get more specific modes.
"""
return {
"quick": CaptureMode(
description="Capture without altering the stream settings.",