From d6527d382e4853728287503860d253f9431de169 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sat, 2 May 2020 03:32:00 +0300 Subject: utils: raspberrypi: ctt: Fix pycodestyle E203 E203 whitespace before ':' Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: David Plowman --- utils/raspberrypi/ctt/ctt_awb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/raspberrypi/ctt/ctt_awb.py') diff --git a/utils/raspberrypi/ctt/ctt_awb.py b/utils/raspberrypi/ctt/ctt_awb.py index 9a92033b..297ba178 100644 --- a/utils/raspberrypi/ctt/ctt_awb.py +++ b/utils/raspberrypi/ctt/ctt_awb.py @@ -197,7 +197,7 @@ def awb(Cam, cal_cr_list, cal_cb_list, plot): iterate backwards over list for easier indexing """ i = len(c_fit) - 1 - while i > 0 : + while i > 0: if c_fit[i] > c_fit[i-1]: Cam.log += '\nColour temperature increase found\n' Cam.log += '{} K at r = {} to '.format(c_fit[i-1], r_fit[i-1]) -- cgit v1.2.1