From da88fcec0d4930bbcec0a44f678f744bfa5334b8 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 E201 and E202 E201 whitespace after '(' E201 whitespace after '{' E201 whitespace after '[' E202 whitespace before '}' E202 whitespace before ']' Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham Reviewed-by: David Plowman --- utils/raspberrypi/ctt/ctt_geq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/raspberrypi/ctt/ctt_geq.py') diff --git a/utils/raspberrypi/ctt/ctt_geq.py b/utils/raspberrypi/ctt/ctt_geq.py index f8395e43..17598640 100644 --- a/utils/raspberrypi/ctt/ctt_geq.py +++ b/utils/raspberrypi/ctt/ctt_geq.py @@ -20,7 +20,7 @@ def geq_fit(Cam, plot): Fits geq model by looking at difference between greens in macbeth patches """ - geqs = np.array([ geq(Cam, Img)*Img.againQ8_norm for Img in imgs ]) + geqs = np.array([geq(Cam, Img)*Img.againQ8_norm for Img in imgs]) Cam.log += '\nProcessed all images' geqs = geqs.reshape((-1, 2)) """ -- cgit v1.2.1