[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

@@ -186,8 +186,8 @@ async def to_code_base(config):
cg.add_library("SPI", None)
cg.add_library(
"BME68x Sensor library",
"1.3.40408",
"https://github.com/boschsensortec/Bosch-BME68x-Library",
None,
"https://github.com/boschsensortec/Bosch-BME68x-Library#v1.3.40408",
)
cg.add_library(
"BSEC2 Software Library",

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}")