Reverent commited on
Commit
a7586a8
·
verified ·
1 Parent(s): 040467a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -65,8 +65,8 @@ def restart():
65
  def placeholder(dummy):
66
  return "lol"
67
 
68
- #t = Thread(target=warmer)
69
- #t.start()
70
 
71
  iface = gr.Interface(fn=placeholder, inputs="text", outputs="text")
72
  iface.launch(show_error=True)
 
65
  def placeholder(dummy):
66
  return "lol"
67
 
68
+ t = Thread(target=warmer)
69
+ t.start()
70
 
71
  iface = gr.Interface(fn=placeholder, inputs="text", outputs="text")
72
  iface.launch(show_error=True)