From 8ddbba84df582f02fa58b94adf7441de5b2d416e Mon Sep 17 00:00:00 2001 From: Jaime Silvela Date: Thu, 30 May 2024 18:39:16 +0200 Subject: [PATCH] chore: fix nit Signed-off-by: Jaime Silvela --- summarize_test_results.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/summarize_test_results.py b/summarize_test_results.py index 8e50634..441e8e5 100644 --- a/summarize_test_results.py +++ b/summarize_test_results.py @@ -610,8 +610,7 @@ def compute_thermometer_on_metric(summary, metric, embed=True): and a color coding based on said percentage """ - output = "" - output += f"{metric_name(metric)} thermometer:\n\n" + output = f"{metric_name(metric)} thermometer:\n\n" for bucket_hits in summary[metric]["failed"].items(): bucket = bucket_hits[0] # the items() call returns (bucket, hits) pairs failures = summary[metric]["failed"][bucket]