diff --git a/homeassistant/helpers/entity.py b/homeassistant/helpers/entity.py index ea0267b21dbc0..55a326702886a 100644 --- a/homeassistant/helpers/entity.py +++ b/homeassistant/helpers/entity.py @@ -299,7 +299,7 @@ def __new__( 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,