diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-05-02 03:32:00 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-05-13 17:00:04 +0300 |
commit | 4939e114b686324f77e02c70aca0402bb13303ea (patch) | |
tree | 668ff26edbacd5ac05b631407bf6c85cd13443a2 /utils | |
parent | 57e999a4aef95a60202ce8e517018d6d1a09b35d (diff) |
utils: raspberrypi: ctt: Fix pycodestyle W504
W504 line break after binary operator
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>
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/raspberrypi/ctt/ctt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/raspberrypi/ctt/ctt.py b/utils/raspberrypi/ctt/ctt.py index 7721676e..51800d98 100755 --- a/utils/raspberrypi/ctt/ctt.py +++ b/utils/raspberrypi/ctt/ctt.py @@ -380,7 +380,7 @@ class Camera: if len(self.imgs_alsc) == 1: self.json['rpi.alsc']['sigma'] = 0.005 self.json['rpi.alsc']['sigma_Cb'] = 0.005 - print('\nWarning:\nOnly one alsc calibration found' + + print('\nWarning:\nOnly one alsc calibration found' '\nStandard sigmas used for adaptive algorithm.') print('Finished ALSC calibrations') self.log += '\nWARNING: Only one colour temperature found in ' |