Skip to content

Commit

Permalink
Chore: fix build_change_log.py: yaml.safe_load()
Browse files Browse the repository at this point in the history
  • Loading branch information
drmingdrmer committed Mar 9, 2024
1 parent 58f4e19 commit c0cebde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_change_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from collections import defaultdict

with open('scripts/change-types.yaml', 'r') as f:
typs = yaml.load(f.read())
typs = yaml.safe_load(f.read())

typs = {x:x for x in typs}

Expand Down

0 comments on commit c0cebde

Please sign in to comment.