CiwPython / Ciw

Ciw is a simulation library for open queueing networks.
http://ciw.readthedocs.io
MIT License
151 stars 42 forks source link

Fix issue with empty lines on Windows, when export to CSV #207

Closed KernelA closed 2 years ago

KernelA commented 2 years ago

We must use newline='' with a CSV writer according official documentation.

On Windows, write_records_to_file generates CSV file with empty lines.

I added context manager instead of explicit close file object and set encoding to the utf-8.

geraintpalmer commented 2 years ago

@KernelA Thank you very much for this fix!