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 and frenck committed Jan 5, 2024
1 parent 4ade5e4 commit c3963b2
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 @@ -292,7 +292,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 c3963b2

Please sign in to comment.