Skip to content

Commit

Permalink
fix download dense
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenwacker committed Aug 2, 2023
1 parent 3ba83dc commit 8dfcfea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ms_mint_app/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ def df_to_in_memory_excel_file(df):
def to_xlsx(bytes_io):
xslx_writer = pd.ExcelWriter(bytes_io, engine="xlsxwriter")
df.to_excel(xslx_writer, index=True, sheet_name="sheet1")
xslx_writer.save()
xslx_writer.close()

return to_xlsx

Expand Down

0 comments on commit 8dfcfea

Please sign in to comment.