Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2754,14 +2754,13 @@ QALAHAYFAQYHDPDDEPVADPYDQSFESRDLLIDEWKSLTYDEVISFVPPPLDQEEMES
|
|
2754 |
return {report_task: gr.Dropdown(visible=False)}
|
2755 |
|
2756 |
report_df_change = file_for_report.change(
|
2757 |
-
fn=update_df, inputs=file_for_report, outputs=[html_report, raw_df, report_df, analyze_btn
|
2758 |
concurrency_limit=100,
|
2759 |
).success(
|
2760 |
fn=lambda: [gr.Button(interactive=True)] * 3 +
|
2761 |
-
[gr.File(visible=False, value=None)] * 2
|
2762 |
-
[gr.Dropdown(visible=False, value=None)],
|
2763 |
outputs=[
|
2764 |
-
csv_generate, html_generate, analyze_btn, csv_download_file, html_download_file
|
2765 |
],
|
2766 |
)
|
2767 |
|
|
|
2754 |
return {report_task: gr.Dropdown(visible=False)}
|
2755 |
|
2756 |
report_df_change = file_for_report.change(
|
2757 |
+
fn=update_df, inputs=file_for_report, outputs=[html_report, raw_df, report_df, analyze_btn],
|
2758 |
concurrency_limit=100,
|
2759 |
).success(
|
2760 |
fn=lambda: [gr.Button(interactive=True)] * 3 +
|
2761 |
+
[gr.File(visible=False, value=None)] * 2,
|
|
|
2762 |
outputs=[
|
2763 |
+
csv_generate, html_generate, analyze_btn, csv_download_file, html_download_file
|
2764 |
],
|
2765 |
)
|
2766 |
|