From e6b2a9b5c4b6b3d7ea55415e9204af7c33d6cbcf Mon Sep 17 00:00:00 2001 From: David Bonnes Date: Wed, 12 Jun 2024 12:45:03 +0100 Subject: [PATCH] Remove redundant logging from evohome (#119482) remove redundant logging --- homeassistant/components/evohome/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/evohome/__init__.py b/homeassistant/components/evohome/__init__.py index 782e4c4e674..13673caebb3 100644 --- a/homeassistant/components/evohome/__init__.py +++ b/homeassistant/components/evohome/__init__.py @@ -185,7 +185,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: } _config = { SZ_LOCATION_INFO: loc_info, - GWS: [{SZ_GATEWAY_INFO: gwy_info, TCS: loc_config[GWS][0][TCS]}], + GWS: [{SZ_GATEWAY_INFO: gwy_info}], } _LOGGER.debug("Config = %s", _config)