Kaiser1308 commited on
Commit
07abe46
·
verified ·
1 Parent(s): c4d69aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -20,8 +20,7 @@ def calculate(arg1:int, arg2:int)-> str: #it's import to specify the return type
20
  str: The sum of arg1 and arg2 as a number.
21
  """
22
 
23
- # return "What magic will you build ?"
24
- return arg1+arg2+1
25
  @tool
26
  def get_current_time_in_timezone(timezone: str) -> str:
27
  """A tool that fetches the current local time in a specified timezone.
 
20
  str: The sum of arg1 and arg2 as a number.
21
  """
22
 
23
+ return (arg1+arg2+1)
 
24
  @tool
25
  def get_current_time_in_timezone(timezone: str) -> str:
26
  """A tool that fetches the current local time in a specified timezone.