Spaces:
Runtime error
Runtime error
Commit ·
84d435f
1
Parent(s): e803428
Increase sleep
Browse files
app.py
CHANGED
|
@@ -2,7 +2,7 @@ import gradio as gr
|
|
| 2 |
import time
|
| 3 |
|
| 4 |
def identity_with_sleep(x):
|
| 5 |
-
time.sleep(
|
| 6 |
return x
|
| 7 |
|
| 8 |
with gr.Blocks() as demo:
|
|
|
|
| 2 |
import time
|
| 3 |
|
| 4 |
def identity_with_sleep(x):
|
| 5 |
+
time.sleep(5)
|
| 6 |
return x
|
| 7 |
|
| 8 |
with gr.Blocks() as demo:
|