1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Remove device_state_attributes property from entity base class (#105650)

This commit is contained in:
Erik Montnemery
2023-12-14 08:33:56 +01:00
committed by GitHub
parent 9020dbb093
commit 0ec3a222e3
2 changed files with 0 additions and 13 deletions

View File

@@ -540,15 +540,6 @@ class Entity(ABC):
"""
return None
@property
def device_state_attributes(self) -> Mapping[str, Any] | None:
"""Return entity specific state attributes.
This method is deprecated, platform classes should implement
extra_state_attributes instead.
"""
return None
@property
def extra_state_attributes(self) -> Mapping[str, Any] | None:
"""Return entity specific state attributes.