From 926582e83cd0fa0b32055aebfe8b9dc256ab79d6 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Thu, 12 Dec 2024 07:22:05 -0500 Subject: [PATCH] get rid of double emojis --- ra_aid/console/formatting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ra_aid/console/formatting.py b/ra_aid/console/formatting.py index f0a66da..656c634 100644 --- a/ra_aid/console/formatting.py +++ b/ra_aid/console/formatting.py @@ -31,7 +31,7 @@ def print_stage_header(stage: str) -> None: icon = icons.get(stage_key, '🚀') # Create styled rule with icon - rule_content = f"{icon} {stage_title} {icon}" + rule_content = f"{icon} {stage_title}" console.print() console.print(Rule(rule_content, style="green bold")) console.print()