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
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:
Since pyyaml version 5.1 the use of the
yaml.load
function without aLoader
argument is deprecated and issues a warning. Since version 6.0yaml.load
does not work at all without aLoader
argument.It is recommended to instead use the
yaml.safe_load
function that uses theSafeLoader
oryaml.full_load
for theFullLoader
that supports serialization but is a bit less safe.There are two files that use the deprecated syntax:
The text was updated successfully, but these errors were encountered: