From 907de1aaab68b1a384113f968fccbec198d68742 Mon Sep 17 00:00:00 2001 From: Justin Goette <53531335+jcgoette@users.noreply.github.com> Date: Sun, 5 Dec 2021 14:07:40 -0500 Subject: [PATCH] change entity.py to use extra_state_attributes (#66) --- custom_components/integration_blueprint/entity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/integration_blueprint/entity.py b/custom_components/integration_blueprint/entity.py index 91e50de..0ab5eff 100644 --- a/custom_components/integration_blueprint/entity.py +++ b/custom_components/integration_blueprint/entity.py @@ -24,7 +24,7 @@ class IntegrationBlueprintEntity(CoordinatorEntity): } @property - def device_state_attributes(self): + def extra_state_attributes(self): """Return the state attributes.""" return { "attribution": ATTRIBUTION,