From f03fd049f70d53bda1b6588fe3092e05c91a8c72 Mon Sep 17 00:00:00 2001 From: Florian Sylvain Date: Fri, 28 Mar 2025 22:50:37 +0100 Subject: [PATCH] fix: simplify title in stats cli display --- fdj_slayer/stats.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fdj_slayer/stats.py b/fdj_slayer/stats.py index 9daeead..eb9b352 100644 --- a/fdj_slayer/stats.py +++ b/fdj_slayer/stats.py @@ -153,8 +153,7 @@ class StatsVisualization: results: Dictionary containing analysis results value_type: Either "number" or "star" to specify which analysis to format """ - title_suffix = "NUMBERS ANALYSIS" if value_type == "number" else "STARS ANALYSIS" - title = f"MAIN {title_suffix}" if value_type == "number" else f"STAR {title_suffix}" + title = "MAIN ANALYSIS" if value_type == "number" else "STAR ANALYSIS" min_key = f"min_{value_type}" max_key = f"max_{value_type}" return f"\n{title}:" \