[core] Small improvements (#14884)

This commit is contained in:
Diorcet Yann
2026-03-18 13:35:20 +13:00
committed by Jesse Hills
parent a40d97f346
commit 8bbfadb59a
2 changed files with 3 additions and 3 deletions
+1 -1
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}")