We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08be324 commit c46d38fCopy full SHA for c46d38f
1 file changed
.circle/validate.py
@@ -27,7 +27,7 @@
27
28
def load_yaml_file(path):
29
with open(path, 'r') as stream:
30
- text = yaml.load(stream)
+ text = yaml.safe_load(stream)
31
32
return text
33
0 commit comments