Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dvc/utils/yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def parse_yaml_for_update(text, path):
def dump_yaml(path, data):
with open(path, "w", encoding="utf-8") as fd:
yaml = YAML()
yaml.version = (1, 1) # Workaround for #4281
yaml.default_flow_style = False
# tell Dumper to represent OrderedDict as
# normal dict
Expand Down