diff --git a/custom_components/ims_envista/coordinator.py b/custom_components/ims_envista/coordinator.py index ac0495a..de5385f 100644 --- a/custom_components/ims_envista/coordinator.py +++ b/custom_components/ims_envista/coordinator.py @@ -10,7 +10,7 @@ from ims_envista import ImsEnvistaApiClientAuthenticationError, ImsEnvistaApiClientError -from .const import DAILY_KEY, DOMAIN, LATEST_KEY, LOGGER +from .const import DOMAIN, LATEST_KEY, LOGGER if TYPE_CHECKING: from homeassistant.core import HomeAssistant @@ -97,12 +97,13 @@ async def _async_update_data(self) -> Any: LOGGER.debug("Station %d latest data: %s", station, station_latest) station_data[station][LATEST_KEY] = station_latest - station_daily = ( - await self.config_entry.runtime_data.client.get_daily_station_data( - station - ) - ) - station_data[station][DAILY_KEY] = station_daily.data + # station_daily = ( + # await self.config_entry.runtime_data.client.get_daily_station_data + # ( + # station + # ) + # ) + # station_data[station][DAILY_KEY] = station_daily.data except ImsEnvistaApiClientAuthenticationError as exception: raise ConfigEntryAuthFailed(exception) from exception