Banalizado commited on
Commit
50de72f
·
verified ·
1 Parent(s): f0d967f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -16,7 +16,8 @@ def reverse_parameters(arg1:str, arg2:int)-> str: #it's import to specify the re
16
  arg1: the first argument
17
  arg2: the second argument
18
  """
19
- return (arg1+' '+arg2)[][-1]
 
20
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str:
 
16
  arg1: the first argument
17
  arg2: the second argument
18
  """
19
+ return_value = arg1+' '+arg2
20
+ return return_value[][-1]
21
 
22
  @tool
23
  def get_current_time_in_timezone(timezone: str) -> str: