From 1cdb4c1f198dfa0a74517f74f327d442ab444364 Mon Sep 17 00:00:00 2001 From: Kysom_Stan Date: Fri, 4 Jul 2025 05:39:32 +0100 Subject: [PATCH] Added message in line 12 --- cli/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/utils.py b/cli/utils.py index 7b9682a6..6854708a 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -9,12 +9,12 @@ ANALYST_ORDER = [ ("News Analyst", AnalystType.NEWS), ("Fundamentals Analyst", AnalystType.FUNDAMENTALS), ] - +#

This is the IBM test

def get_ticker() -> str: """Prompt the user to enter a ticker symbol.""" ticker = questionary.text( - "Enter the ticker symbol to analyze:", + "Enter the ticker symbol to analyze:" validate=lambda x: len(x.strip()) > 0 or "Please enter a valid ticker symbol.", style=questionary.Style( [