From eb458fb1d5c7c4965baefc3425f764dcc7edc02a Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 27 Aug 2021 14:59:28 -0700 Subject: [PATCH] Fix wolflink super call (#55359) --- homeassistant/components/wolflink/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/wolflink/sensor.py b/homeassistant/components/wolflink/sensor.py index 92f18e04de4..975ddbdd068 100644 --- a/homeassistant/components/wolflink/sensor.py +++ b/homeassistant/components/wolflink/sensor.py @@ -148,7 +148,7 @@ class WolfLinkState(WolfLinkSensor): @property def native_value(self): """Return the state converting with supported values.""" - state = super().state + state = super().native_value resolved_state = [ item for item in self.wolf_object.items if item.value == int(state) ]