From 404c552b767d52b691282675df4fd36f60bcd4a8 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 30 Jan 2026 17:23:39 +0100 Subject: [PATCH 1/2] graph.py: remove extraneous 'f' prefix --- graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.py b/graph.py index d41fff93d..27bcdd110 100644 --- a/graph.py +++ b/graph.py @@ -117,7 +117,7 @@ fail_pct = (fail_count / total) * 100 if total > 0 else 0 skip_pct = (skip_count / total) * 100 if total > 0 else 0 # Create text box -textstr = f"Latest Results:\n" +textstr = "Latest Results:\n" textstr += f"Pass: {pass_pct:.1f}%\n" textstr += f"Fail: {fail_pct:.1f}%\n" textstr += f"Skip: {skip_pct:.1f}%" From 9fd072f85de800b904247d560103cd54fc98f53a Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 30 Jan 2026 17:32:55 +0100 Subject: [PATCH 2/2] graph.py: format file --- graph.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/graph.py b/graph.py index 27bcdd110..7b285d211 100644 --- a/graph.py +++ b/graph.py @@ -123,7 +123,13 @@ textstr += f"Fail: {fail_pct:.1f}%\n" textstr += f"Skip: {skip_pct:.1f}%" # Add text box on the top right -props = dict(boxstyle="round,pad=0.8", facecolor="#FFFFFF", edgecolor="#D1D5DB", linewidth=2, alpha=0.95) +props = dict( + boxstyle="round,pad=0.8", + facecolor="#FFFFFF", + edgecolor="#D1D5DB", + linewidth=2, + alpha=0.95, +) ax.text( 0.98, 1.15,