Fix for two points setting when fan_only_cooling is disabled (#2903)

Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
Co-authored-by: Keith Burzinski <kburzinski@kbx-mbp2021.ad.kbx81.net>
This commit is contained in:
Keith Burzinski 2021-12-11 01:03:22 -06:00 committed by Jesse Hills
parent b8d3ef2f49
commit d504daef91
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -431,7 +431,8 @@ async def to_code(config):
heat_cool_mode_available = CONF_HEAT_ACTION in config and CONF_COOL_ACTION in config
two_points_available = CONF_HEAT_ACTION in config and (
CONF_COOL_ACTION in config or CONF_FAN_ONLY_ACTION in config
CONF_COOL_ACTION in config
or (config[CONF_FAN_ONLY_COOLING] and CONF_FAN_ONLY_ACTION in config)
)
sens = await cg.get_variable(config[CONF_SENSOR])