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
Updated versions of pyYAML no longer allow calling load_all as on line 32 for d["Direction"])) for d in yaml.load_all(f0)]
load_all
d["Direction"])) for d in yaml.load_all(f0)]
With pyyaml version 6.0, I was able to run by changing to safe_load_all
safe_load_all
I would consider setting minimum version requirement for PyYAML, as it appears the change patches a vulnerability.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Updated versions of pyYAML no longer allow calling
load_all
as on line 32 ford["Direction"])) for d in yaml.load_all(f0)]
With pyyaml version 6.0, I was able to run by changing to
safe_load_all
I would consider setting minimum version requirement for PyYAML, as it appears the change patches a vulnerability.
The text was updated successfully, but these errors were encountered: