Skip to content

Use proper encoding when opening files

Currently we get 'charmap' codec can't encode character '\u200b' in position 63215: character maps to <undefined>.

This happens in graph.py:L394

Solution (thanks to @jascha.buchhorn):

open(filename, "w", encoding="utf-8")