Added message in line 12
This commit is contained in:
parent
a438acdbbd
commit
1cdb4c1f19
|
|
@ -9,12 +9,12 @@ ANALYST_ORDER = [
|
||||||
("News Analyst", AnalystType.NEWS),
|
("News Analyst", AnalystType.NEWS),
|
||||||
("Fundamentals Analyst", AnalystType.FUNDAMENTALS),
|
("Fundamentals Analyst", AnalystType.FUNDAMENTALS),
|
||||||
]
|
]
|
||||||
|
#<h1>This is the IBM test</h1>
|
||||||
|
|
||||||
def get_ticker() -> str:
|
def get_ticker() -> str:
|
||||||
"""Prompt the user to enter a ticker symbol."""
|
"""Prompt the user to enter a ticker symbol."""
|
||||||
ticker = questionary.text(
|
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.",
|
validate=lambda x: len(x.strip()) > 0 or "Please enter a valid ticker symbol.",
|
||||||
style=questionary.Style(
|
style=questionary.Style(
|
||||||
[
|
[
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue