Bugfix temp step list out of range sensibo (#65782)
This commit is contained in:
parent
5613a80d28
commit
07edbc42a4
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class SensiboDataUpdateCoordinator(DataUpdateCoordinator):
|
|||
temperatures_list = (
|
||||
current_capabilities["temperatures"]
|
||||
.get(temperature_unit_key, {})
|
||||
.get("values", [0])
|
||||
.get("values", [0, 1])
|
||||
)
|
||||
if temperatures_list:
|
||||
temperature_step = temperatures_list[1] - temperatures_list[0]
|
||||
|
|
Loading…
Add table
Reference in a new issue