Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
17 |
-
|
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."
|