mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-13 15:29:45 +03:00
utils: raspberrypi: ctt: Fix pycodestyle E251
E251 unexpected spaces around keyword / parameter equals Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com>
This commit is contained in:
parent
6eb1bce9c7
commit
965cae72a7
6 changed files with 9 additions and 9 deletions
|
@ -474,7 +474,7 @@ class Camera:
|
|||
run calibration on all images and sort by slope.
|
||||
"""
|
||||
plot = "rpi.noise" in self.plot
|
||||
noise_out = sorted([noise(self, Img, plot) for Img in self.imgs], key = lambda x: x[0])
|
||||
noise_out = sorted([noise(self, Img, plot) for Img in self.imgs], key=lambda x: x[0])
|
||||
self.log += '\nFinished processing images'
|
||||
"""
|
||||
take the average of the interquartile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue