Skip to content

Commit b98ac7e

Browse files
committed
fix using ruamel.yaml
1 parent f6a6ab2 commit b98ac7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nf_core/components/components_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def get_components_to_install(
176176

177177
if (sw_meta := Path(subworkflow_dir, "meta.yml")).exists():
178178
with open(sw_meta) as fh:
179-
meta = yaml.safe_load(fh)
179+
meta = yaml.load(fh)
180180
if "components" in meta:
181181
components = meta["components"]
182182
for component in components:

0 commit comments

Comments
 (0)