Workpam commited on
Commit
b37fc74
·
verified ·
1 Parent(s): ac8524b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -8
app.py CHANGED
@@ -688,18 +688,20 @@ with gr.Blocks(css=css) as demo:
688
  )
689
 
690
  clear_btn.click(
691
- fn=do_clear,
692
  inputs=[temp_dir_state],
693
  outputs=[
694
- workbook_input,
695
- image_data_state,
696
- upload_box,
697
- zip_file_hidden,
698
- single_downloads,
699
- status,
700
- temp_dir_state
 
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)