From a7ff9abdae0c231d0c94c8f77496a6d02dd353bd Mon Sep 17 00:00:00 2001 From: Keith Burzinski Date: Tue, 30 Apr 2024 02:39:00 -0500 Subject: [PATCH] Update nolint take 2 --- esphome/components/ota/ota_backend.cpp | 2 +- esphome/components/ota/ota_backend.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/ota/ota_backend.cpp b/esphome/components/ota/ota_backend.cpp index cb026b033b..2f2fec2020 100644 --- a/esphome/components/ota/ota_backend.cpp +++ b/esphome/components/ota/ota_backend.cpp @@ -4,7 +4,7 @@ namespace esphome { namespace ota { #ifdef USE_OTA_STATE_CALLBACK -OTAGlobalCallback *global_ota_component = new OTAGlobalCallback; // NOLINT(cppcoreguidelines-owning-memory) +OTAGlobalCallback *global_ota_component = new OTAGlobalCallback; // NOLINT #endif } // namespace ota diff --git a/esphome/components/ota/ota_backend.h b/esphome/components/ota/ota_backend.h index f72a63d0e4..b76883df74 100644 --- a/esphome/components/ota/ota_backend.h +++ b/esphome/components/ota/ota_backend.h @@ -81,7 +81,7 @@ class OTAGlobalCallback { CallbackManager state_callback_{}; }; -extern OTAGlobalCallback *global_ota_component; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables) +extern OTAGlobalCallback *global_ota_component; // NOLINT #endif std::unique_ptr make_ota_backend();