jcho02 commited on
Commit
7d91dc5
·
1 Parent(s): 2effb4f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def feedback_response(feedback, comments):
33
  df = pd.DataFrame({'Response': [response],'Additional Comments': [comments]})
34
 
35
  # Append the data to the worksheet
36
- worksheet.append_table(df.values.tolist())
37
 
38
  return "Your feedback has been recorded. Thank you!"
39
 
 
33
  df = pd.DataFrame({'Response': [response],'Additional Comments': [comments]})
34
 
35
  # Append the data to the worksheet
36
+ worksheet.append_rows(df.values.tolist())
37
 
38
  return "Your feedback has been recorded. Thank you!"
39