fixed typo in excel_path
Browse files
app.py
CHANGED
@@ -112,7 +112,7 @@ def export_to_excel(df):
|
|
112 |
excel_path = tmp.name
|
113 |
# Save the DataFrame to Excel
|
114 |
df.to_excel(excel_path, index=False)
|
115 |
-
return
|
116 |
|
117 |
# Create Gradio interface with one results table and export functionality
|
118 |
with gr.Blocks() as demo:
|
|
|
112 |
excel_path = tmp.name
|
113 |
# Save the DataFrame to Excel
|
114 |
df.to_excel(excel_path, index=False)
|
115 |
+
return excel_path
|
116 |
|
117 |
# Create Gradio interface with one results table and export functionality
|
118 |
with gr.Blocks() as demo:
|