From e8655c2161a97261971ef19621a34651980b76d6 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 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 Reviewed-by: Kieran Bingham Reviewed-by: David Plowman --- utils/raspberrypi/ctt/ctt_image_load.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'utils/raspberrypi/ctt/ctt_image_load.py') diff --git a/utils/raspberrypi/ctt/ctt_image_load.py b/utils/raspberrypi/ctt/ctt_image_load.py index 240d68f9..66adb237 100644 --- a/utils/raspberrypi/ctt/ctt_image_load.py +++ b/utils/raspberrypi/ctt/ctt_image_load.py @@ -210,6 +210,7 @@ class Image: self.patches = all_patches return 1 + def brcm_load_image(Cam, im_str): """ Load image where raw data and metadata is in the BRCM format @@ -290,6 +291,7 @@ def brcm_load_image(Cam, im_str): return Img + def dng_load_image(Cam, im_str): try: Img = Image(None) -- cgit v1.2.1