From 69a75872a4da39e7798b1454faa62d3c341b85b5 Mon Sep 17 00:00:00 2001 From: Matthew Stidham Date: Tue, 16 Nov 2021 11:03:14 -0800 Subject: [PATCH] sta_connect_example: Remove invalid comparisons Signed-off-by: Matthew Stidham --- py-scripts/sta_connect_example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-scripts/sta_connect_example.py b/py-scripts/sta_connect_example.py index 2365858b..4f193489 100755 --- a/py-scripts/sta_connect_example.py +++ b/py-scripts/sta_connect_example.py @@ -65,7 +65,7 @@ def main(): #staConnect.finish() staConnect.cleanup() is_passing = staConnect.passes() - if is_passing == False: + if not is_passing: # run_results = staConnect.get_failed_result_list() fail_message = staConnect.get_fail_message() print("Some tests failed:\n" + fail_message)