jyll commited on
Commit
a48136b
1 Parent(s): 896f25a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -3,5 +3,7 @@ import time
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
 
 
6
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
  iface.launch()
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
5
 
6
+ print("sleep...")
7
+ time.sleep(100)
8
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
  iface.launch()