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

Commit

Permalink
fix: update ruamel.yaml reference to the new api (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
bamarco authored Nov 19, 2023
1 parent b4f1926 commit c3d50dc
Showing 1 changed file with 1 addition and 3 deletions.
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

0 comments on commit c3d50dc

Please sign in to comment.