Return empty dictionary at first for attributes (#41348)

This commit is contained in:
springstan 2020-10-06 18:08:53 +02:00 committed by GitHub
parent 4d12fcc218
commit 61d9067a49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 75 additions and 77 deletions

View file

@ -287,9 +287,9 @@ class MaxCubeClimate(ClimateEntity):
cube = self._cubehandle.cube
device = cube.device_by_rf(self._rf_address)
if cube.is_thermostat(device):
return {ATTR_VALVE_POSITION: device.valve_position}
return {}
if not cube.is_thermostat(device):
return {}
return {ATTR_VALVE_POSITION: device.valve_position}
def update(self):
"""Get latest data from MAX! Cube."""