Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,7 +15,7 @@ def sort(lis_:list)-> str: #it's import to specify the return type
|
|
| 15 |
Args:
|
| 16 |
lis_ : list of numbers to be sorted
|
| 17 |
"""
|
| 18 |
-
return str(sorted(
|
| 19 |
|
| 20 |
@tool
|
| 21 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 15 |
Args:
|
| 16 |
lis_ : list of numbers to be sorted
|
| 17 |
"""
|
| 18 |
+
return str(sorted(lis_))
|
| 19 |
|
| 20 |
@tool
|
| 21 |
def get_current_time_in_timezone(timezone: str) -> str:
|