[core] Small improvements (#14884)

This commit is contained in:
Diorcet Yann
2026-03-17 14:22:31 +01:00
committed by GitHub
parent bba11b3b1e
commit 73ca0ff106
2 changed files with 3 additions and 3 deletions

View File

@@ -384,7 +384,7 @@ def merge_component_configs(
# Write merged config
output_file.parent.mkdir(parents=True, exist_ok=True)
yaml_content = yaml_util.dump(merged_config_data)
output_file.write_text(yaml_content)
output_file.write_text(yaml_content, encoding="utf-8")
print(f"Successfully merged {len(component_names)} components into {output_file}")