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:59:51 +0300 |
commit | a49fd8ea1dd98207662d4c902f1e6897183ef482 (patch) | |
tree | 5aa39e5e0ab93b7e109a91a15872ba24fedba8b1 /utils/raspberrypi/ctt/ctt_tools.py | |
parent | 67f9605a7faef954dc3242450de0cf10ae215514 (diff) |
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>
Diffstat (limited to 'utils/raspberrypi/ctt/ctt_tools.py')
-rw-r--r-- | utils/raspberrypi/ctt/ctt_tools.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/raspberrypi/ctt/ctt_tools.py b/utils/raspberrypi/ctt/ctt_tools.py index 27080de0..f4b9baac 100644 --- a/utils/raspberrypi/ctt/ctt_tools.py +++ b/utils/raspberrypi/ctt/ctt_tools.py @@ -99,11 +99,11 @@ display image for debugging... read at your own risk... """ def represent(img, name='image'): # if type(img) == tuple or type(img) == list: - # for i in range(len(img)): - # name = 'image {}'.format(i) - # cv2.imshow(name, img[i]) + # for i in range(len(img)): + # name = 'image {}'.format(i) + # cv2.imshow(name, img[i]) # else: - # cv2.imshow(name, img) + # cv2.imshow(name, img) # cv2.waitKey(0) # cv2.destroyAllWindows() # return 0 |