From 9c497163781ab2c667f3fc1dc95322bb7485c037 Mon Sep 17 00:00:00 2001 From: TongguangZhang Date: Sat, 22 Jun 2024 17:45:26 -0400 Subject: [PATCH] fixed linting failure in image decode --- lte/modules/image_decode.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lte/modules/image_decode.py b/lte/modules/image_decode.py index cdb3484..a617be2 100644 --- a/lte/modules/image_decode.py +++ b/lte/modules/image_decode.py @@ -2,6 +2,8 @@ Decodes images from JPEG bytes to numpy array. """ +# Used in type annotation of flight interface output +# pylint: disable-next=unused-import import io from PIL import Image