shivroh commited on
Commit
ba60a98
·
verified ·
1 Parent(s): 2f5db4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,8 +15,8 @@ def reverse_string(arg1:str)-> str: #it's import to specify the return type
15
  Args:
16
  arg1: string to be reversed
17
  """
18
- arg1 = arg1[::-1]
19
- return arg1
20
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str:
 
15
  Args:
16
  arg1: string to be reversed
17
  """
18
+
19
+ return arg1[::-1]
20
 
21
  @tool
22
  def get_current_time_in_timezone(timezone: str) -> str: