Nazhar commited on
Commit
c4971bc
·
verified ·
1 Parent(s): f956979

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -788,6 +788,7 @@ with chat:
788
  # Append data to an existing CSV file or create a new one if it doesn't exist
789
  with open('Queries.csv', 'a') as f:
790
  queries.to_csv(f, header=not file_exists, index=False)
 
791
 
792
 
793
 
 
788
  # Append data to an existing CSV file or create a new one if it doesn't exist
789
  with open('Queries.csv', 'a') as f:
790
  queries.to_csv(f, header=not file_exists, index=False)
791
+ print("Data appended to CSV successfully.")
792
 
793
 
794