Mario Namtao Shianti Larcher commited on
Commit
4884eb3
1 Parent(s): ecb8582

Fix bug: missing outputs

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