Skip to content

Commit 5b02b8f

Browse files
committed
fix doc build
1 parent 008d553 commit 5b02b8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_pycamera/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ def set_camera_exposure(self, new_exposure=None):
935935
The argument of `None` selects auto exposure.
936936
937937
Otherwise, the new exposure data should come from
938-
``get_camera_autosettings()["exposure"]."""
938+
``get_camera_autosettings()["exposure"]``."""
939939
if new_exposure is None:
940940
# just set auto expose
941941
self.camera.exposure_ctrl = True
@@ -952,7 +952,7 @@ def set_camera_gain(self, new_gain=None):
952952
The argument of `None` selects auto gain control.
953953
954954
Otherwise, the new exposure data should come from
955-
``get_camera_autosettings()["gain"]."""
955+
``get_camera_autosettings()["gain"]``."""
956956
if new_gain is None:
957957
# just set auto expose
958958
self.camera.gain_ctrl = True

0 commit comments

Comments
 (0)