Commit dbb1b87d authored by Anas Nashif's avatar Anas Nashif Committed by Carles Cufi
Browse files

twister: instance: fix pylint warning



C0325:Unnecessary parens after '=' keyword (superfluous-parens)
File:scripts/pylib/twister/twisterlib/testinstance.py
Line:134
Column:0

Signed-off-by: default avatarAnas Nashif <anas.nashif@intel.com>
parent 81a1e9d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ class TestInstance:
            # command-line, then we need to run the test, not just build it.
            fixture = testsuite.harness_config.get('fixture')
            if fixture:
                can_run = (fixture in fixtures)
                can_run = fixture in fixtures

        return can_run