Moibe commited on
Commit
91eed1f
·
1 Parent(s): 6b2b610

Fix inputs outputs

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -31,7 +31,6 @@ with gr.Blocks() as demo:
31
  with gr.Column():
32
  text_output = gr.Textbox()
33
 
34
- enviar_btn.click(fn=getAccess, inputs="text", outputs="text", api_name="entrar")
35
-
36
 
37
  demo.launch()
 
31
  with gr.Column():
32
  text_output = gr.Textbox()
33
 
34
+ enviar_btn.click(fn=getAccess, inputs=text_input, outputs=text_output, api_name="entrar")
 
35
 
36
  demo.launch()