diff --git a/components/mitsubishi_heatpump/climate.py b/components/mitsubishi_heatpump/climate.py index 1f5bfa4..901ef7f 100644 --- a/components/mitsubishi_heatpump/climate.py +++ b/components/mitsubishi_heatpump/climate.py @@ -50,11 +50,11 @@ CONFIG_SCHEMA = climate.CLIMATE_SCHEMA.extend( # Optionally override the supported ClimateTraits. cv.Optional(CONF_SUPPORTS, default={}): cv.Schema( { - cv.Optional(CONF_MODE, default=DEFAULT_CLIMATE_MODES): + cv.Optional(CONF_MODE, default=DEFAULT_CLIMATE_MODES): cv.ensure_list(climate.validate_climate_mode), - cv.Optional(CONF_FAN_MODE, default=DEFAULT_FAN_MODES): + cv.Optional(CONF_FAN_MODE, default=DEFAULT_FAN_MODES): cv.ensure_list(climate.validate_climate_fan_mode), - cv.Optional(CONF_SWING_MODE, default=DEFAULT_SWING_MODES): + cv.Optional(CONF_SWING_MODE, default=DEFAULT_SWING_MODES): cv.ensure_list(climate.validate_climate_swing_mode), } ),