Spaces:
Sleeping
Sleeping
Fix docstring
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ def my_cutom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
22 |
def fetch_binance_price(symbol: str = "BTCUSDT") -> str:
|
23 |
"""Get price for a token from binance exchange
|
24 |
Args:
|
25 |
-
symbol
|
26 |
"""
|
27 |
|
28 |
symbol = symbol.upper() #just in case
|
|
|
22 |
def fetch_binance_price(symbol: str = "BTCUSDT") -> str:
|
23 |
"""Get price for a token from binance exchange
|
24 |
Args:
|
25 |
+
symbol: Trading pair symbol (e.g. 'BTCUSDT')
|
26 |
"""
|
27 |
|
28 |
symbol = symbol.upper() #just in case
|