From cc27854fb2e5cc2144fe7487364e8a20dab18c70 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 22 Aug 2026 21:12:37 -0500 Subject: [PATCH] Point the consumed-options comment at its now-real consumer --- esphome/core/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esphome/core/config.py b/esphome/core/config.py index ef34b02385..472ca64c9a 100644 --- a/esphome/core/config.py +++ b/esphome/core/config.py @@ -561,9 +561,9 @@ def _add_library_str(lib: str) -> None: NATIVE_ARDUINO_PIO_OPTIONS = frozenset({"board_build.f_cpu", "board_build.ldscript"}) # The full set that survives into CORE.platformio_options under the native # arduino toolchain: lib_ignore is the only specially-translated key below -# that is stored rather than translated away. Intentionally unused until the -# esp8266 native backend (the final PR in this chain) consumes it for its -# ignored-option warning; defined here so it stays adjacent to the routing. +# that is stored rather than translated away. Consumed by the esp8266 native +# backend (later in this chain) for its ignored-option warning; defined here +# so it stays adjacent to the routing. NATIVE_ARDUINO_CONSUMED_PIO_OPTIONS = NATIVE_ARDUINO_PIO_OPTIONS | {"lib_ignore"}