Fix incomfort min/max temperatures (#55806)

This commit is contained in:
David Bonnes 2021-09-06 11:26:20 +01:00 committed by Paulus Schoutsen
parent 899d8164b0
commit 00878467cc

View File

@ -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: