Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -688,18 +688,20 @@ with gr.Blocks(css=css) as demo:
|
|
688 |
)
|
689 |
|
690 |
clear_btn.click(
|
691 |
-
fn=
|
692 |
inputs=[temp_dir_state],
|
693 |
outputs=[
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
|
|
701 |
]
|
702 |
)
|
703 |
|
|
|
704 |
if __name__ == "__main__":
|
705 |
demo.queue().launch(debug=True)
|
|
|
688 |
)
|
689 |
|
690 |
clear_btn.click(
|
691 |
+
fn=clear_all,
|
692 |
inputs=[temp_dir_state],
|
693 |
outputs=[
|
694 |
+
workbook_upload,
|
695 |
+
image_data_state,
|
696 |
+
upload_box,
|
697 |
+
zip_file_hidden,
|
698 |
+
single_downloads,
|
699 |
+
status,
|
700 |
+
temp_dir_state,
|
701 |
+
image_url_input
|
702 |
]
|
703 |
)
|
704 |
|
705 |
+
|
706 |
if __name__ == "__main__":
|
707 |
demo.queue().launch(debug=True)
|