diff --git a/compliance_checker/runner.py b/compliance_checker/runner.py index 536888f5..ffbdeaa1 100644 --- a/compliance_checker/runner.py +++ b/compliance_checker/runner.py @@ -148,22 +148,12 @@ def stdout_output(cls, cs, score_dict, verbose, limit): """ for ds, score_groups in score_dict.items(): - for checker, rpair in score_groups.items(): - groups, errors = rpair + for checker, (groups, errors) in score_groups.items(): score_list, points, out_of = cs.standard_output( - ds, - limit, - checker, - groups, - ) + ds, limit, checker, groups) # send list of grouped result objects to stdout & reasoning_routine cs.standard_output_generation( - groups, - limit, - points, - out_of, - check=checker, - ) + groups, limit, points, out_of, check=checker) return groups @classmethod