Closed Idotno-1 closed 4 years ago
Wait, why not safe_load?
Wait, why not safe_load?
The yaml file can be trusted so I didn't saw the point of using safe_load.
The yaml file can be trusted so I didn't saw the point of using safe_load.
There are zero reasons to use full_load
, it's only meant for very weird uses of yaml in which code execution would be allowed by design. We need and we want dumb yaml. Please use safe_load
.
Using the function
full_load
instead of the deprecatedload
.fix: #228