sagawa commited on
Commit
5698d1e
·
1 Parent(s): 3aff373

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,7 +78,7 @@ if CFG.uploaded_file is not None:
78
  @st.cache
79
  def convert_df(df):
80
  # IMPORTANT: Cache the conversion to prevent computation on every rerun
81
- return df.to_csv(index=False).encode('utf-8')
82
 
83
  output_df = convert_df(output_df)
84
 
 
78
  @st.cache
79
  def convert_df(df):
80
  # IMPORTANT: Cache the conversion to prevent computation on every rerun
81
+ return df.to_csv(index=False)
82
 
83
  output_df = convert_df(output_df)
84