Closed osallou closed 5 years ago
Using yaml as load, a warning is raised:
/venv/lib64/python3.7/site-packages/i18n/loaders/yaml_loader.py:12: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
return yaml.load(file_content)
This can be simply fixed with something like:
yaml.load(ymlfile, Loader=yaml.FullLoader)
Using yaml as load, a warning is raised:
return yaml.load(file_content)
This can be simply fixed with something like: