From 6091c71944ae88f0179966197d509fcddfa6e24c Mon Sep 17 00:00:00 2001 From: Chuck <33324927+ChuckBuilds@users.noreply.github.com> Date: Thu, 10 Apr 2025 20:59:47 -0500 Subject: [PATCH] Update news_manager.py separator character change --- src/news_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/news_manager.py b/src/news_manager.py index 9a34cfc1..115386fe 100644 --- a/src/news_manager.py +++ b/src/news_manager.py @@ -194,7 +194,7 @@ class NewsManager: next_news = all_news[(self.current_news_index + 1) % len(all_news)] # Format the news text with proper spacing and separator - separator = " ● " # Visual separator between news items + separator = " - " # Visual separator between news items current_text = f"{current_news['symbol']}: {current_news['title']}" next_text = f"{next_news['symbol']}: {next_news['title']}" news_text = f"{current_text}{separator}{next_text}"