We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
corpus.py line 38 needs to change from
return yaml.load(data_file)
to
return yaml.load(data_file, Loader=yaml.FullLoader)
per this update to yaml: https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation
The text was updated successfully, but these errors were encountered:
yaml.safe_load(data_file) also works
yaml.safe_load(data_file)
Sorry, something went wrong.
No branches or pull requests
corpus.py line 38 needs to change from
return yaml.load(data_file)
to
return yaml.load(data_file, Loader=yaml.FullLoader)
per this update to yaml:
https://github.com/yaml/pyyaml/wiki/PyYAML-yaml.load(input)-Deprecation
The text was updated successfully, but these errors were encountered: