Some output files are not written in UTF8 (e.g. report l.230)
with open(args.results_directory / "summary_vehicles_costs.csv", "w", newline='') as f:
Please check all output files and make sure they are written in UTF8 (hardcoded) as
with open(args.results_directory / "summary_vehicles_costs.csv", 'w', encoding='UTF8', newline='') as f:
Some output files are not written in UTF8 (e.g. report l.230)
with open(args.results_directory / "summary_vehicles_costs.csv", "w", newline='') as f:
Please check all output files and make sure they are written in UTF8 (hardcoded) aswith open(args.results_directory / "summary_vehicles_costs.csv", 'w', encoding='UTF8', newline='') as f: