diff --git a/homeassistant/helpers/entity.py b/homeassistant/helpers/entity.py index 4a12c012ca1..f19edaf28b9 100644 --- a/homeassistant/helpers/entity.py +++ b/homeassistant/helpers/entity.py @@ -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. diff --git a/pylint/plugins/hass_enforce_type_hints.py b/pylint/plugins/hass_enforce_type_hints.py index bd09f461881..b2620dd3e1e 100644 --- a/pylint/plugins/hass_enforce_type_hints.py +++ b/pylint/plugins/hass_enforce_type_hints.py @@ -587,10 +587,6 @@ _ENTITY_MATCH: list[TypeHintMatch] = [ function_name="state_attributes", return_type=["dict[str, Any]", None], ), - TypeHintMatch( - function_name="device_state_attributes", - return_type=["Mapping[str, Any]", None], - ), TypeHintMatch( function_name="extra_state_attributes", return_type=["Mapping[str, Any]", None],