From a8d47821beb8fab5fa4143a7b904e9eb770e3570 Mon Sep 17 00:00:00 2001 From: Przemek Wirkus Date: Fri, 11 Jul 2014 10:21:11 +0100 Subject: [PATCH] pyFlakes issue fixed: Removed two unused variables --- workspace_tools/singletest.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/workspace_tools/singletest.py b/workspace_tools/singletest.py index ea3036e6ab..dac941c85c 100644 --- a/workspace_tools/singletest.py +++ b/workspace_tools/singletest.py @@ -333,8 +333,6 @@ class SingleTestRunner(object): def shape_global_test_loop_result(self, test_all_result): """ Reformats list of results to simple string """ - test_loop_count = len(test_all_result) - test_loop_ok_result = test_all_result.count(self.TEST_RESULT_OK) result = self.TEST_RESULT_FAIL if all(test_all_result[0] == res for res in test_all_result): result = test_all_result[0]