DataWizard9742 commited on
Commit
40359c2
·
1 Parent(s): 2181dd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -41,7 +41,7 @@ def main():
41
  # Download the converted ratings as CSV
42
  st.download_button(
43
  label="Download Converted Ratings",
44
- data=df[Rating'].to_csv(index=False),
45
  file_name="converted_ratings.csv",
46
  mime="text/csv"
47
  )
 
41
  # Download the converted ratings as CSV
42
  st.download_button(
43
  label="Download Converted Ratings",
44
+ data=df['Rating'].to_csv(index=False),
45
  file_name="converted_ratings.csv",
46
  mime="text/csv"
47
  )