Araeynn commited on
Commit
ea9e60f
1 Parent(s): e9f1e60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,10 +33,10 @@ def serverActivate():
33
  def start():
34
  import gradio as gr
35
 
36
- def op():
37
  return ""
38
 
39
- demo = gr.Interface(fn=op, outputs="textbox")
40
 
41
  demo.launch(share=True)
42
 
 
33
  def start():
34
  import gradio as gr
35
 
36
+ def op(name):
37
  return ""
38
 
39
+ demo = gr.Interface(fn=op, inputs="textbox", outputs="textbox")
40
 
41
  demo.launch(share=True)
42