Changed docstring for capture modes

This commit is contained in:
Chish36 2026-07-01 13:37:01 +01:00
parent a846039f74
commit 8d7f26d23c

View file

@ -628,7 +628,10 @@ class BaseCamera(OFMThing, ABC):
@lt.property @lt.property
def capture_modes(self) -> Mapping[str, CaptureMode]: 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 { return {
"quick": CaptureMode( "quick": CaptureMode(
description="Capture without altering the stream settings.", description="Capture without altering the stream settings.",