MeghanaNanuvala commited on
Commit
9b51ef8
·
verified ·
1 Parent(s): b4e47b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -15,6 +15,9 @@ def get_message_repeater(message:str, times:int)-> str: #it's import to specify
15
  Args:
16
  arg1: the message to repeat
17
  arg2: how many times to repeat the message
 
 
 
18
  """
19
  return (message + " ") * times
20
 
 
15
  Args:
16
  arg1: the message to repeat
17
  arg2: how many times to repeat the message
18
+
19
+ Returns:
20
+ str: The repeated message.
21
  """
22
  return (message + " ") * times
23