From 8101376ad5883c0444b7e3b1ee08a00d2393b32b Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Fri, 28 Jul 2023 19:41:41 +0200 Subject: [PATCH] Small cleanup in event entity (#97409) --- homeassistant/components/event/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/event/__init__.py b/homeassistant/components/event/__init__.py index 98dd6036bc9..f6ba2d79bfe 100644 --- a/homeassistant/components/event/__init__.py +++ b/homeassistant/components/event/__init__.py @@ -45,7 +45,6 @@ __all__ = [ "EventDeviceClass", "EventEntity", "EventEntityDescription", - "EventEntityFeature", ] # mypy: disallow-any-generics @@ -104,7 +103,7 @@ class EventExtraStoredData(ExtraStoredData): class EventEntity(RestoreEntity): - """Representation of a Event entity.""" + """Representation of an Event entity.""" entity_description: EventEntityDescription _attr_device_class: EventDeviceClass | None