Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Update ruamel.yaml reference to the new api #384

Merged
merged 2 commits into from
Nov 19, 2023
Merged
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
4 changes: 1 addition & 3 deletions boa/cli/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ def check_if_quoted(s):
wo_skip_lines.append(line)

rest_lines = wo_skip_lines
result_yaml.update(
ruamel.yaml.load("".join(rest_lines), ruamel.yaml.RoundTripLoader)
)
result_yaml.update(yaml.load("".join(rest_lines)))

if len(skips) != 0:
result_yaml["build"]["skip"] = skips
Expand Down
Loading