diff --git a/openflexure_microscope/api/default_extensions/picamera_autocalibrate/recalibrate_utils.py b/openflexure_microscope/api/default_extensions/picamera_autocalibrate/recalibrate_utils.py index ddbdb0ba..28b04c02 100644 --- a/openflexure_microscope/api/default_extensions/picamera_autocalibrate/recalibrate_utils.py +++ b/openflexure_microscope/api/default_extensions/picamera_autocalibrate/recalibrate_utils.py @@ -25,8 +25,10 @@ def flat_lens_shading_table(camera): "This program requires the forked picamera library with lens shading support" ) return ( - np.zeros(camera._lens_shading_table_shape(), dtype=np.uint8) + 32 - ) # pylint: disable=W0212 + # pylint: disable=W0212 + np.zeros(camera._lens_shading_table_shape(), dtype=np.uint8) + + 32 + ) def adjust_exposure_to_setpoint(camera, setpoint):