Fix incomfort min/max temperatures (#55806)

This commit is contained in:
David Bonnes
2021-09-06 11:26:20 +01:00
committed by GitHub
parent d50b700dc7
commit 67b7144703

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: