Skip to content

Commit c46d38f

Browse files
committed
Use 'yaml.safe_load instead of the unsafe yaml.load to silence warnings during CI checks
1 parent 08be324 commit c46d38f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.circle/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
def load_yaml_file(path):
2929
with open(path, 'r') as stream:
30-
text = yaml.load(stream)
30+
text = yaml.safe_load(stream)
3131

3232
return text
3333

0 commit comments

Comments
 (0)