Fix wolflink super call (#55359)

This commit is contained in:
Paulus Schoutsen 2021-08-27 14:59:28 -07:00 committed by GitHub
parent 10fa63775d
commit eb458fb1d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)
]