From 641d188dec040084f110784c90a792251629e5c9 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 2 Mar 2026 09:19:58 -1000 Subject: [PATCH 1/2] lint --- esphome/core/application.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esphome/core/application.h b/esphome/core/application.h index 2f50c22e88..63d59c555e 100644 --- a/esphome/core/application.h +++ b/esphome/core/application.h @@ -36,10 +36,9 @@ #endif // USE_SOCKET_SELECT_SUPPORT #if defined(USE_ESP8266) && defined(USE_SOCKET_IMPL_LWIP_TCP) namespace esphome::socket { -void socket_wake(); +void socket_wake(); // NOLINT(readability-redundant-declaration) } // namespace esphome::socket #endif - #ifdef USE_BINARY_SENSOR #include "esphome/components/binary_sensor/binary_sensor.h" #endif From d0930a4766de55424518a96c7e69e6a2325b2814 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 2 Mar 2026 09:20:09 -1000 Subject: [PATCH 2/2] lint --- esphome/components/socket/socket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/socket/socket.h b/esphome/components/socket/socket.h index d3ca1279fb..546d278260 100644 --- a/esphome/components/socket/socket.h +++ b/esphome/components/socket/socket.h @@ -88,7 +88,7 @@ void socket_delay(uint32_t ms); /// Signal socket/IO activity and wake the main loop from esp_delay() early. /// ISR-safe: uses IRAM_ATTR internally and only sets a volatile flag + esp_schedule(). -void socket_wake(); +void socket_wake(); // NOLINT(readability-redundant-declaration) #endif } // namespace esphome::socket