diff --git a/homeassistant/components/melcloud_home/coordinator.py b/homeassistant/components/melcloud_home/coordinator.py index 671463a2c6b7..eab30379e233 100644 --- a/homeassistant/components/melcloud_home/coordinator.py +++ b/homeassistant/components/melcloud_home/coordinator.py @@ -176,7 +176,7 @@ class MelCloudHomeEnergyCoordinator(DataUpdateCoordinator[dict[str, float | None """Fetch energy telemetry for a unit without failing the whole update.""" try: energy = await self.client.get_energy_telemetry( - unit_id, from_dt=start_of_month, to_dt=now + unit_id, from_dt=start_of_month, to_dt=now, interval="Day" ) except ( MelCloudHomeAuthenticationError,