[libcamera-devel,18/24] utils: raspberrypi: ctt: Fix pycodestyle E713

Message ID 20200512000322.11753-19-laurent.pinchart@ideasonboard.com
State Accepted
Headers show
Series
  • utils: raspberrypi: ctt: Comply with pycodestyle
Related show

Commit Message

Laurent Pinchart May 12, 2020, 12:03 a.m. UTC
E713 test for membership should be 'not in'

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 utils/raspberrypi/ctt/ctt.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Patch

diff --git a/utils/raspberrypi/ctt/ctt.py b/utils/raspberrypi/ctt/ctt.py
index 3ebd10711d94..6caa5a552230 100755
--- a/utils/raspberrypi/ctt/ctt.py
+++ b/utils/raspberrypi/ctt/ctt.py
@@ -216,7 +216,7 @@  class Camera:
         Check if alsc tables have been generated, if not then do ccm without
         alsc
         """
-        if (not "rpi.alsc" in self.disable) and do_alsc_colour:
+        if ("rpi.alsc" not in self.disable) and do_alsc_colour:
             """
             case where ALSC colour has been done, so no errors should be
             expected...
@@ -285,7 +285,7 @@  class Camera:
         Check if alsc tables have been generated, if not then do awb without
         alsc correction
         """
-        if (not "rpi.alsc" in self.disable) and do_alsc_colour:
+        if ("rpi.alsc" not in self.disable) and do_alsc_colour:
             try:
                 cal_cr_list = self.json['rpi.alsc']['calibrations_Cr']
                 cal_cb_list = self.json['rpi.alsc']['calibrations_Cb']