albertvillanova HF staff commited on
Commit
828deb4
1 Parent(s): 3546565

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -5,6 +5,5 @@ def my_function(x, progress=gr.Progress()):
5
  time.sleep(1)
6
  for i in progress.tqdm(range(100)):
7
  time.sleep(0.1)
8
- return x, gr.Textbox(visible=False)
9
- # gr.Interface(my_function, gr.Textbox(), gr.Textbox()).queue().launch()
10
- gr.Interface(my_function, gr.Textbox(), [gr.HTML(), gr.Textbox()]).queue().launch()
 
5
  time.sleep(1)
6
  for i in progress.tqdm(range(100)):
7
  time.sleep(0.1)
8
+ return x
9
+ gr.Interface(my_function, gr.Textbox(), gr.HTML()).queue().launch()