Commit 9310deee authored by Joel Collins's avatar Joel Collins
Browse files

Fixed pylint line ignores

parent 68d578e8
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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):