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 ae9ba6f commit 501995dCopy full SHA for 501995d
commitizen/config/yaml_config.py
@@ -38,7 +38,7 @@ def set_key(self, key, value):
38
We use to update the version number.
39
"""
40
with open(self.path, "r") as yaml_file:
41
- parser = yaml.load(yaml_file)
+ parser = yaml.load(yaml_file, Loader=yaml.FullLoader)
42
43
parser["commitizen"][key] = value
44
with open(self.path, "w") as yaml_file:
0 commit comments