Skip to content

Commit

Permalink
Fix entity property cache creation arguments (#107221)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppetru authored Jan 5, 2024
1 parent ace4edf commit 4a2958b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/helpers/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4a2958b

Please sign in to comment.