Changed docstring for capture modes
This commit is contained in:
parent
a846039f74
commit
8d7f26d23c
1 changed files with 4 additions and 1 deletions
|
|
@ -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.",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue