Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -23,7 +23,9 @@ def my_custom_tool(arg1:str, arg2:int)-> str: #it's import to specify the return
|
|
| 23 |
def mountain_color(height:int)-> str:
|
| 24 |
"""A tool that gives the color of the mountain depending on its height
|
| 25 |
Args:
|
| 26 |
-
height: the height of the mountain
|
|
|
|
|
|
|
| 27 |
"""
|
| 28 |
try:
|
| 29 |
color = "green"
|
|
|
|
| 23 |
def mountain_color(height:int)-> str:
|
| 24 |
"""A tool that gives the color of the mountain depending on its height
|
| 25 |
Args:
|
| 26 |
+
height(int): the height of the mountain
|
| 27 |
+
Returns:
|
| 28 |
+
str: the color of the mountain
|
| 29 |
"""
|
| 30 |
try:
|
| 31 |
color = "green"
|