diff --git a/homeassistant/components/airvisual/__init__.py b/homeassistant/components/airvisual/__init__.py index 099fdfc5df7..4c46e7b3e7d 100644 --- a/homeassistant/components/airvisual/__init__.py +++ b/homeassistant/components/airvisual/__init__.py @@ -331,6 +331,13 @@ class AirVisualEntity(Entity): self.update_from_latest_data() + async def async_update(self): + """Update the entity. + + Only used by the generic entity update service. + """ + await self.coordinator.async_request_refresh() + @callback def update_from_latest_data(self): """Update the entity from the latest data."""