vinnnz commited on
Commit
425c13c
·
verified ·
1 Parent(s): a575233

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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"