mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00:00
Fix incomfort min/max temperatures (#55806)
This commit is contained in:
parent
d50b700dc7
commit
67b7144703
@ -67,13 +67,13 @@ class IncomfortWaterHeater(IncomfortEntity, WaterHeaterEntity):
|
||||
|
||||
@property
|
||||
def min_temp(self) -> float:
|
||||
"""Return max valid temperature that can be set."""
|
||||
return 80.0
|
||||
"""Return min valid temperature that can be set."""
|
||||
return 30.0
|
||||
|
||||
@property
|
||||
def max_temp(self) -> float:
|
||||
"""Return max valid temperature that can be set."""
|
||||
return 30.0
|
||||
return 80.0
|
||||
|
||||
@property
|
||||
def temperature_unit(self) -> str:
|
||||
|
Loading…
x
Reference in New Issue
Block a user