Skip to content

Commit a8d4782

Browse files
committed
pyFlakes issue fixed: Removed two unused variables
1 parent bbf5cbc commit a8d4782

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

workspace_tools/singletest.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,6 @@ def shape_test_loop_ok_result_count(self, test_all_result):
333333

334334
def shape_global_test_loop_result(self, test_all_result):
335335
""" Reformats list of results to simple string """
336-
test_loop_count = len(test_all_result)
337-
test_loop_ok_result = test_all_result.count(self.TEST_RESULT_OK)
338336
result = self.TEST_RESULT_FAIL
339337
if all(test_all_result[0] == res for res in test_all_result):
340338
result = test_all_result[0]

0 commit comments

Comments
 (0)