Update app.py
Browse files
app.py
CHANGED
@@ -93,7 +93,7 @@ with gr.Blocks(theme=frosted) as demo:
|
|
93 |
clear = gr.Button("Clear")
|
94 |
output = gr.Textbox(label="Output")
|
95 |
|
96 |
-
|
97 |
time.sleep(3)
|
98 |
return name * count
|
99 |
|
|
|
93 |
clear = gr.Button("Clear")
|
94 |
output = gr.Textbox(label="Output")
|
95 |
|
96 |
+
def repeat(name, count):
|
97 |
time.sleep(3)
|
98 |
return name * count
|
99 |
|