From dbb7703efb08ea4b6547047b9fe17fdb57f4aeff Mon Sep 17 00:00:00 2001 From: Nick Kinnan Date: Tue, 15 Oct 2024 22:55:37 -0700 Subject: [PATCH] Update event.h --- esphome/components/event/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/event/event.h b/esphome/components/event/event.h index c56611fb87..03c3c8d95a 100644 --- a/esphome/components/event/event.h +++ b/esphome/components/event/event.h @@ -23,7 +23,7 @@ namespace event { class Event : public EntityBase, public EntityBase_DeviceClass { public: - const std::string *last_event_type_; + const std::string *last_event_type; void trigger(const std::string &event_type); void set_event_types(const std::set &event_types) { this->types_ = event_types; }