synthmonad commited on
Commit
66f79e3
·
verified ·
1 Parent(s): 3e1c5f8

Fix build errors

Browse files

Fix builld errors

Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -25,13 +25,15 @@ def fetch_binance_price(symbol: str = "BTCUSDT") -> str:
25
  symbol (str): Trading pair symbol (e.g. 'BTCUSDT')
26
  """
27
 
28
- url = f"https://api.binance.com/api/v3/ticker/price?symbol={symbol.upper()}"
 
 
29
 
30
  try:
31
  response = requests.get(url)
32
  response.raise_for_status() # Raise exception for 4XX/5XX status codes
33
  data = response.json()
34
- return f'The price for {data[symbol]} is {[data[price]}'
35
  except requests.RequestException as e:
36
  print(f"Error fetching data: {e}")
37
  raise
 
25
  symbol (str): Trading pair symbol (e.g. 'BTCUSDT')
26
  """
27
 
28
+ symbol = symbol.upper() #just in case
29
+
30
+ url = f"https://api.binance.com/api/v3/ticker/price?symbol={symbol}"
31
 
32
  try:
33
  response = requests.get(url)
34
  response.raise_for_status() # Raise exception for 4XX/5XX status codes
35
  data = response.json()
36
+ return f"The price for {data[symbol]} is {data[price]}"
37
  except requests.RequestException as e:
38
  print(f"Error fetching data: {e}")
39
  raise