1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-11 22:33:49 +01:00

uart grouping

This commit is contained in:
J. Nick Koston
2025-10-08 18:06:10 -10:00
parent 11298ca485
commit 2679ce4836
2 changed files with 4 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ def uses_local_file_references(component_dir: Path) -> bool:
try:
content = common_yaml.read_text()
except Exception:
except Exception: # pylint: disable=broad-exception-caught
return False
# Pattern to match $component_dir or ${component_dir} references
@@ -113,7 +113,7 @@ def extract_common_buses(yaml_file: Path) -> set[str]:
try:
content = yaml_file.read_text()
except Exception:
except Exception: # pylint: disable=broad-exception-caught
return set()
buses = set()