Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -472,9 +472,9 @@ with gr.Blocks(css=None) as demo:
|
|
| 472 |
pass
|
| 473 |
|
| 474 |
with gr.Row():
|
| 475 |
-
out = gr.File(label='Cleaned files')
|
| 476 |
with gr.Row():
|
| 477 |
-
log = gr.Textbox(label='Process log 📄')
|
| 478 |
|
| 479 |
bt.click(fn = process, inputs=[inp,bt], outputs=[out,log])
|
| 480 |
|
|
|
|
| 472 |
pass
|
| 473 |
|
| 474 |
with gr.Row():
|
| 475 |
+
out = gr.File(label='Cleaned files',visible=False)
|
| 476 |
with gr.Row():
|
| 477 |
+
log = gr.Textbox(label='Process log 📄',visible=False)
|
| 478 |
|
| 479 |
bt.click(fn = process, inputs=[inp,bt], outputs=[out,log])
|
| 480 |
|