From 17c5844d13afe62c52301eabd683cb6913a77c10 Mon Sep 17 00:00:00 2001 From: Tomasz Duda Date: Fri, 9 Aug 2024 17:23:17 +0200 Subject: [PATCH] base_light_effects lint --- esphome/components/light/base_light_effects.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/light/base_light_effects.h b/esphome/components/light/base_light_effects.h index f7829a3f44..044fff9e96 100644 --- a/esphome/components/light/base_light_effects.h +++ b/esphome/components/light/base_light_effects.h @@ -53,8 +53,8 @@ class PulseLightEffect : public LightEffect { uint32_t transition_on_length_{}; uint32_t transition_off_length_{}; uint32_t update_interval_{}; - float min_brightness{0.0}; - float max_brightness{1.0}; + float min_brightness{0.0}; // NOLINT(readability-identifier-naming) + float max_brightness{1.0}; // NOLINT(readability-identifier-naming) }; /// Random effect. Sets random colors every 10 seconds and slowly transitions between them.