pnugues commited on
Commit
2f2e633
·
verified ·
1 Parent(s): b672231

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -11,4 +11,6 @@ with gr.Blocks(title="Copier") as demo:
11
  with gr.Column():
12
  tgt_sentence = gr.Textbox(label="Copy", placeholder="Copy will show here...")
13
  btn = gr.Button("Copy!")
14
- btn.click(fn=copy, inputs=[src_sentence], outputs=[tgt_sentence])
 
 
 
11
  with gr.Column():
12
  tgt_sentence = gr.Textbox(label="Copy", placeholder="Copy will show here...")
13
  btn = gr.Button("Copy!")
14
+ btn.click(fn=copy, inputs=[src_sentence], outputs=[tgt_sentence])
15
+
16
+ demo.launch()