From 4a2958baeb8c7f91aaa75cd5c46a09f703cd34b1 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Fri, 5 Jan 2024 08:18:25 +0000 Subject: [PATCH] Fix entity property cache creation arguments (#107221) --- homeassistant/helpers/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/helpers/entity.py b/homeassistant/helpers/entity.py index ea0267b21db..55a32670288 100644 --- a/homeassistant/helpers/entity.py +++ b/homeassistant/helpers/entity.py @@ -299,7 +299,7 @@ class CachedProperties(type): Pop cached_properties and store it in the namespace. """ namespace["_CachedProperties__cached_properties"] = cached_properties or set() - return super().__new__(mcs, name, bases, namespace) + return super().__new__(mcs, name, bases, namespace, **kwargs) def __init__( cls,