Conny89 commited on
Commit
8d3711e
·
verified ·
1 Parent(s): e213ef9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,9 +38,9 @@ def get_reverse_str(word: str) -> str:
38
  """
39
  A tool that returns a input word reversed
40
  Args:
41
- word (str): A string containing a word
42
  Returns:
43
- word2 (str): The input word reversed
44
  """
45
  word2 = word[::-1]
46
  return word2
 
38
  """
39
  A tool that returns a input word reversed
40
  Args:
41
+ word: A string containing a word
42
  Returns:
43
+ word2: The input word reversed
44
  """
45
  word2 = word[::-1]
46
  return word2