Skip to content

Commit

Permalink
fix deprecated error
Browse files Browse the repository at this point in the history
  • Loading branch information
Legendaxe committed Nov 10, 2023
1 parent 4c45a69 commit 8f477f0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/changelog/check_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import os
import re
from pathlib import Path
from ruamel import yaml
from ruamel.yaml import YAML
from github import Github
import json

Expand Down Expand Up @@ -88,7 +88,8 @@
print("There are spaces or tabs instead of author username")

with open(Path.cwd().joinpath("tags.yml")) as file:
tags = yaml.safe_load(file)
yaml = YAML(type='safe',pure=True)
tags = yaml.load(file)

write_cl['changes'] = []

Expand Down

0 comments on commit 8f477f0

Please sign in to comment.