Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|