Laurent Pinchart
e8655c2161
utils: raspberrypi: ctt: Fix pycodestyle E302
...
E302 expected 2 blank lines, found 0
Note that issues are still flagged, due to the use of docstrings as
multi-lines comments. This will be addressed separately.
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 >
2020-05-13 17:00:25 +03:00
Laurent Pinchart
33c4221e87
utils: raspberrypi: ctt: Fix pycodestyle E305
...
E305 expected 2 blank lines after class or function definition
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 >
2020-05-13 17:00:13 +03:00
Laurent Pinchart
2b21c6ac86
utils: raspberrypi: ctt: Fix pycodestyle E741
...
E741 ambiguous variable name 'l'
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 >
2020-05-13 17:00:07 +03:00
Laurent Pinchart
4939e114b6
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 >
2020-05-13 17:00:04 +03:00
Laurent Pinchart
57e999a4ae
utils: raspberrypi: ctt: Fix pycodestyle E722
...
E722 do not use bare 'except'
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 >
2020-05-13 17:00:01 +03:00
Laurent Pinchart
5eae909293
utils: raspberrypi: ctt: Fix pycodestyle E721
...
E721 do not compare types, use 'isinstance()'
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 >
2020-05-13 16:59:58 +03:00
Laurent Pinchart
f8e9810020
utils: raspberrypi: ctt: Fix pycodestyle E713
...
E713 test for membership should be 'not in'
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 >
2020-05-13 16:59:55 +03:00
Laurent Pinchart
a49fd8ea1d
utils: raspberrypi: ctt: Fix pycodestyle E116 and E117
...
E116 unexpected indentation (comment)
E117 over-indented (comment)
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 >
2020-05-13 16:59:51 +03:00
Laurent Pinchart
67f9605a7f
utils: raspberrypi: ctt: Fix pycodestyle E123 and E126
...
E123 closing bracket does not match indentation of opening bracket's line
E126 continuation line over-indented for hanging indent
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 >
2020-05-13 16:59:47 +03:00
Laurent Pinchart
ca73168e75
utils: raspberrypi: ctt: Fix pycodestyle E711 and E712
...
E711 comparison to None should be 'if cond is None:'
E711 comparison to None should be 'if cond is not None:'
E712 comparison to False should be 'if cond is False:' or 'if not cond:'
E712 comparison to True should be 'if cond is True:' or 'if cond:'
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 >
2020-05-13 16:59:07 +03:00
Laurent Pinchart
5f2160cc96
utils: raspberrypi: ctt: Fix pycodestyle E222
...
E222 multiple spaces after 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 >
2020-05-13 16:59:01 +03:00
Laurent Pinchart
23cb30918c
utils: raspberrypi: ctt: Fix pycodestyle E261 and E262
...
E261 at least two spaces before inline comment
E262 inline comment should start with '# '
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 >
2020-05-13 16:58:58 +03:00
Laurent Pinchart
23db936a1f
utils: raspberrypi: ctt: Fix pycodestyle E303
...
E303 too many blank lines
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 >
2020-05-13 16:58:54 +03:00
Laurent Pinchart
e31b104fd1
utils: raspberrypi: ctt: Fix pycodestyle E701
...
E701 multiple statements on one line (colon)
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 >
2020-05-13 16:58:37 +03:00
Laurent Pinchart
863e31fa52
utils: raspberrypi: ctt: Fix pycodestyle E228
...
E228 missing whitespace around modulo 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 >
2020-05-13 16:58:32 +03:00
Laurent Pinchart
641c6ebe9b
utils: raspberrypi: ctt: Fix pycodestyle E225
...
E225 missing whitespace around 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 >
2020-05-13 16:58:22 +03:00
Laurent Pinchart
23f9f46c8a
utils: raspberrypi: ctt: Fix pycodestyle E128
...
E128 continuation line under-indented for visual indent
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 >
2020-05-13 16:58:12 +03:00
Laurent Pinchart
965cae72a7
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 >
2020-05-13 16:58:07 +03:00
Laurent Pinchart
6eb1bce9c7
utils: raspberrypi: ctt: Fix pycodestyle E211
...
E211 whitespace before '['
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 >
2020-05-13 16:57:50 +03:00
Laurent Pinchart
adb5dedb8f
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 >
2020-05-13 16:57:48 +03:00
Laurent Pinchart
d6527d382e
utils: raspberrypi: ctt: Fix pycodestyle E203
...
E203 whitespace before ':'
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 >
2020-05-13 16:57:43 +03:00
Laurent Pinchart
da88fcec0d
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 <laurent.pinchart@ideasonboard.com >
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com >
Reviewed-by: David Plowman <david.plowman@raspberrypi.com >
2020-05-13 16:57:30 +03:00
Laurent Pinchart
93a133fb17
utils: raspberrypi: ctt: Fix pycodestyle E231
...
E231 missing whitespace after ','
E231 missing whitespace 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 >
2020-05-13 16:56:39 +03:00
Naushir Patuck
c01cfe14f5
libcamera: utils: Raspberry Pi Camera Tuning Tool
...
Initial implementation of the Raspberry Pi (BCM2835) Camera Tuning Tool.
All code is licensed under the BSD-2-Clause terms.
Copyright (c) 2019-2020 Raspberry Pi Trading Ltd.
Signed-off-by: Naushir Patuck <naush@raspberrypi.com >
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com >
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com >
2020-05-11 23:54:45 +03:00