Fix the pylint R1714 issues
authorAlexander Popov <alex.popov@linux.com>
Sun, 22 Jan 2023 00:16:01 +0000 (03:16 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 22 Jan 2023 00:19:37 +0000 (03:19 +0300)
No functional changes

kconfig_hardened_check/__init__.py

index 4daf6717307d23d0ff9e175d664bd44daa7ffc03..534978b0f484828039fba327e1c36bb281444b36 100644 (file)
@@ -66,7 +66,7 @@ class OptCheck:
                'invalid expected value "{}" for "{}" check (1)'.format(expected, name)
         val_len = len(expected.split())
         if val_len == 3:
-            assert(expected == 'is not set' or expected == 'is not off'), \
+            assert(expected in ('is not set', 'is not off')), \
                    'invalid expected value "{}" for "{}" check (2)'.format(expected, name)
         elif val_len == 2:
             assert(expected == 'is present'), \
@@ -266,7 +266,7 @@ class AND(ComplexOptCheck):
                     self.result = 'FAIL: {} is not "{}"'.format(opt.name, opt.expected)
                 elif opt.result == 'FAIL: is not present':
                     self.result = 'FAIL: {} is not present'.format(opt.name)
-                elif opt.result == 'FAIL: is off' or opt.result == 'FAIL: is off, "0"':
+                elif opt.result in ('FAIL: is off', 'FAIL: is off, "0"'):
                     self.result = 'FAIL: {} is off'.format(opt.name)
                 elif opt.result == 'FAIL: is off, not found':
                     self.result = 'FAIL: {} is off, not found'.format(opt.name)