TAneKAnz commited on
Commit
1cabe85
·
verified ·
1 Parent(s): 82ee94e

test show_process

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,7 +52,7 @@ with gr.Blocks() as demo:
52
  convert_button.click(
53
  fn=convert_to_grayscale,
54
  inputs=[video_input, history_state],
55
- outputs=[video_output, history_state]
56
  show_progress=True
57
  )
58
 
@@ -63,7 +63,7 @@ with gr.Blocks() as demo:
63
  fn=lambda history: "<pre>" + "\n".join(history) + "</pre>",
64
  inputs=history_state,
65
  outputs=history_output,
66
- queue=False
67
  show_progress=False
68
  )
69
 
 
52
  convert_button.click(
53
  fn=convert_to_grayscale,
54
  inputs=[video_input, history_state],
55
+ outputs=[video_output, history_state],
56
  show_progress=True
57
  )
58
 
 
63
  fn=lambda history: "<pre>" + "\n".join(history) + "</pre>",
64
  inputs=history_state,
65
  outputs=history_output,
66
+ queue=False,
67
  show_progress=False
68
  )
69