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 16:57:48 +0300 |
commit | adb5dedb8f4f3b352c64a3014ad4aae3791256f8 (patch) | |
tree | d6194bb7298f9a33ab25403af40efaa5c353dd60 | |
parent | d6527d382e4853728287503860d253f9431de169 (diff) |
utils: raspberrypi: ctt: Fix pycodestyle E241
E241 multiple spaces after ':'
E241 multiple spaces after ','
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>
-rwxr-xr-x | utils/raspberrypi/ctt/ctt.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/raspberrypi/ctt/ctt.py b/utils/raspberrypi/ctt/ctt.py index 97cadfe8..743ee3bc 100755 --- a/utils/raspberrypi/ctt/ctt.py +++ b/utils/raspberrypi/ctt/ctt.py @@ -126,11 +126,11 @@ class Camera: "exposure_modes": { "normal": { "shutter": [100, 10000, 30000, 60000, 120000], - "gain": [1.0, 2.0, 4.0, 6.0, 6.0] + "gain": [1.0, 2.0, 4.0, 6.0, 6.0] }, "sport": { "shutter": [100, 5000, 10000, 20000, 120000], - "gain": [1.0, 2.0, 4.0, 6.0, 6.0 ] + "gain": [1.0, 2.0, 4.0, 6.0, 6.0] } }, "constraint_modes": { |