changed delimiter to comma
Browse files
app.py
CHANGED
@@ -169,7 +169,7 @@ def create_csv():
|
|
169 |
|
170 |
# Writing data to CSV file with ordered columns
|
171 |
with open(output_file_path, 'w', newline='') as csvfile:
|
172 |
-
csv_writer = csv.DictWriter(csvfile, fieldnames=column_order, delimiter="
|
173 |
csv_writer.writeheader()
|
174 |
|
175 |
# Iterating over each item and price, creating a new row for each pair
|
|
|
169 |
|
170 |
# Writing data to CSV file with ordered columns
|
171 |
with open(output_file_path, 'w', newline='') as csvfile:
|
172 |
+
csv_writer = csv.DictWriter(csvfile, fieldnames=column_order, delimiter=",")
|
173 |
csv_writer.writeheader()
|
174 |
|
175 |
# Iterating over each item and price, creating a new row for each pair
|