mostafa-sh commited on
Commit
abe3b4b
·
verified ·
1 Parent(s): 73686c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ def rep_string_by_n(s:str, n:int)-> str: #it's import to specify the return type
20
  """
21
  res = ''
22
  for i in range(n):
23
- res += str + '-'
24
  return res[:-1]
25
 
26
  @tool
 
20
  """
21
  res = ''
22
  for i in range(n):
23
+ res += s + '-'
24
  return res[:-1]
25
 
26
  @tool