Skip to content
New issue

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

Deprecated use of pyyaml's yaml.load function without a Loader argument #167

Closed
evilsetg opened this issue Nov 14, 2022 · 0 comments · Fixed by #168
Closed

Deprecated use of pyyaml's yaml.load function without a Loader argument #167

evilsetg opened this issue Nov 14, 2022 · 0 comments · Fixed by #168

Comments

@evilsetg
Copy link

Since pyyaml version 5.1 the use of the yaml.load function without a Loader argument is deprecated and issues a warning. Since version 6.0 yaml.load does not work at all without a Loader argument.

It is recommended to instead use the yaml.safe_load function that uses the SafeLoader or yaml.full_load for the FullLoader that supports serialization but is a bit less safe.

There are two files that use the deprecated syntax:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant