abo commited on
Commit
b73003a
·
verified ·
1 Parent(s): bb87d44

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -13,8 +13,8 @@ def days_before_season(local_time:str, season:str)-> str: #it's import to specif
13
  #Keep this format for the description / args / args description but feel free to modify the tool
14
  """A tool that determines how many days are from now to the specified season
15
  Args:
16
- arg1: local time
17
- arg2: a season of the year
18
  """
19
  days = season_start - local_time
20
  return f"Until {season} are {days} left."
 
13
  #Keep this format for the description / args / args description but feel free to modify the tool
14
  """A tool that determines how many days are from now to the specified season
15
  Args:
16
+ local_time: local time
17
+ season: a season of the year
18
  """
19
  days = season_start - local_time
20
  return f"Until {season} are {days} left."