bstraehle commited on
Commit
c5a1d3e
·
verified ·
1 Parent(s): 92c0321

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ def yf_download_tool(ticker: str, start_date: date, end_date: date) -> pd.DataFr
39
  Use this function for any questions related to getting historical stock data.
40
  The input should be a ticker string, a start date, and an end date.
41
  This function always returns a pandas DataFrame."""
42
- return yf.download(tickers, start=start_date, end=end_date)
43
 
44
  tools = {
45
  "today_tool": today_tool,
 
39
  Use this function for any questions related to getting historical stock data.
40
  The input should be a ticker string, a start date, and an end date.
41
  This function always returns a pandas DataFrame."""
42
+ return yf.download(ticker, start=start_date, end=end_date)
43
 
44
  tools = {
45
  "today_tool": today_tool,