vonshed commited on
Commit
d89a084
1 Parent(s): f3fcafe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ uploaded_file = st.sidebar.file_uploader("Choose a CSV file", type=["csv"])
29
  if uploaded_file is not None:
30
  # Read the CSV file
31
  df = pd.read_csv(uploaded_file)
32
- df.save_to_disk("answers.csv")
33
  # Show the contents of the CSV file in the main area
34
  #st.write(df)
35
  else:
 
29
  if uploaded_file is not None:
30
  # Read the CSV file
31
  df = pd.read_csv(uploaded_file)
32
+ df.to_csv("answers.csv")
33
  # Show the contents of the CSV file in the main area
34
  #st.write(df)
35
  else: