We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008d553 commit 5b02b8fCopy full SHA for 5b02b8f
adafruit_pycamera/__init__.py
@@ -935,7 +935,7 @@ def set_camera_exposure(self, new_exposure=None):
935
The argument of `None` selects auto exposure.
936
937
Otherwise, the new exposure data should come from
938
- ``get_camera_autosettings()["exposure"]."""
+ ``get_camera_autosettings()["exposure"]``."""
939
if new_exposure is None:
940
# just set auto expose
941
self.camera.exposure_ctrl = True
@@ -952,7 +952,7 @@ def set_camera_gain(self, new_gain=None):
952
The argument of `None` selects auto gain control.
953
954
955
- ``get_camera_autosettings()["gain"]."""
+ ``get_camera_autosettings()["gain"]``."""
956
if new_gain is None:
957
958
self.camera.gain_ctrl = True
0 commit comments