diff --git a/homeassistant/components/scrape/sensor.py b/homeassistant/components/scrape/sensor.py index 77131ccb225..bb8c233983d 100644 --- a/homeassistant/components/scrape/sensor.py +++ b/homeassistant/components/scrape/sensor.py @@ -192,9 +192,7 @@ class ScrapeSensor(CoordinatorEntity[ScrapeCoordinator], ManualTriggerSensorEnti async def async_added_to_hass(self) -> None: """Ensure the data from the initial update is reflected in the state.""" - await ManualTriggerEntity.async_added_to_hass(self) - # https://github.com/python/mypy/issues/15097 - await CoordinatorEntity.async_added_to_hass(self) # type: ignore[arg-type] + await super().async_added_to_hass() self._async_update_from_rest_data() def _async_update_from_rest_data(self) -> None: