@@ -227,7 +227,7 @@ JSON Array:
csv_result = await self.parse_to_csv(file_path)
if csv_result:
- with open(full_path, "w", encoding="utf-8-sig") as f:
+ with open(full_path, "w", encoding="utf-8") as f:
f.write(csv_result)
return full_path
else: