You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the encoding default is not UTF-8 on all platform, eg Windows
it would be nice to add the encoding="utf-8" option to all open() calls in https://github.com/cltk/lat_models_cltk/blob/master/lemmata/collatinus/__convert.py
for example, line 28, replace: with open("src/morphos.la") as f:
with: with open("src/morphos.la", encoding="utf-8") as f:
The text was updated successfully, but these errors were encountered:
the encoding default is not UTF-8 on all platform, eg Windows
it would be nice to add the
encoding="utf-8"
option to allopen()
calls in https://github.com/cltk/lat_models_cltk/blob/master/lemmata/collatinus/__convert.pyfor example, line 28, replace:
with open("src/morphos.la") as f:
with:
with open("src/morphos.la", encoding="utf-8") as f:
The text was updated successfully, but these errors were encountered: