Fixed pylint line ignores
This commit is contained in:
parent
68d578e825
commit
9310deeeff
1 changed files with 4 additions and 2 deletions
|
|
@ -25,8 +25,10 @@ def flat_lens_shading_table(camera):
|
||||||
"This program requires the forked picamera library with lens shading support"
|
"This program requires the forked picamera library with lens shading support"
|
||||||
)
|
)
|
||||||
return (
|
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):
|
def adjust_exposure_to_setpoint(camera, setpoint):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue