diff --git a/homeassistant/components/hvv_departures/binary_sensor.py b/homeassistant/components/hvv_departures/binary_sensor.py index 2eeb6339214..0ec08e9c791 100644 --- a/homeassistant/components/hvv_departures/binary_sensor.py +++ b/homeassistant/components/hvv_departures/binary_sensor.py @@ -191,17 +191,3 @@ class HvvDepartureBinarySensor(CoordinatorEntity, BinarySensorEntity): for k, v in self.coordinator.data[self.idx]["attributes"].items() if v is not None } - - # pylint: disable-next=hass-missing-super-call - async def async_added_to_hass(self) -> None: - """When entity is added to hass.""" - self.async_on_remove( - self.coordinator.async_add_listener(self.async_write_ha_state) - ) - - async def async_update(self) -> None: - """Update the entity. - - Only used by the generic entity update service. - """ - await self.coordinator.async_request_refresh()