Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ def reverse_parameters(arg1:str, arg2:int)-> str: #it's import to specify the re
|
|
17 |
arg2: the second argument
|
18 |
"""
|
19 |
return_value = arg1+' '+arg2
|
20 |
-
return return_value[
|
21 |
|
22 |
@tool
|
23 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
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:
|