1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-05 18:30:28 +01:00

Update nolint take 2

This commit is contained in:
Keith Burzinski 2024-04-30 02:39:00 -05:00
parent 437b2540e9
commit a7ff9abdae
No known key found for this signature in database
GPG Key ID: 802564C5F0EEFFBE
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -81,7 +81,7 @@ class OTAGlobalCallback {
CallbackManager<void(OTAState, float, uint8_t, OTAComponent *)> state_callback_{};
};
extern OTAGlobalCallback *global_ota_component; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
extern OTAGlobalCallback *global_ota_component; // NOLINT
#endif
std::unique_ptr<ota::OTABackend> make_ota_backend();