gloignon commited on
Commit
f3eaee0
·
verified ·
1 Parent(s): a635d76

fixed typo in excel_path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 excel_pathp
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: