applebanana commited on
Commit
1fd4aca
·
verified ·
1 Parent(s): 5146c5c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def get_market_cap(ticker_symbol: str)-> int: #it's import to specify the return
22
 
23
  # Extract market cap if available
24
  market_cap = info.get('marketCap')
25
- return f"{market_cap:,}"
26
 
27
  @tool
28
  def get_current_time_in_timezone(timezone: str) -> str:
 
22
 
23
  # Extract market cap if available
24
  market_cap = info.get('marketCap')
25
+ return market_cap
26
 
27
  @tool
28
  def get_current_time_in_timezone(timezone: str) -> str: