diff --git a/cli/utils.py b/cli/utils.py
index aa097fb5..4716e689 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(
[