This commit is contained in:
Anidobe Chisom Stanley 2026-02-25 20:52:00 +01:00 committed by GitHub
commit 95c066197b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -9,12 +9,12 @@ ANALYST_ORDER = [
("News Analyst", AnalystType.NEWS),
("Fundamentals Analyst", AnalystType.FUNDAMENTALS),
]
#<h1>This is the IBM test</h1>
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(
[