diff --git a/homeassistant/components/met/weather.py b/homeassistant/components/met/weather.py index e4c64f9aeda..f505d1db1a3 100644 --- a/homeassistant/components/met/weather.py +++ b/homeassistant/components/met/weather.py @@ -225,3 +225,14 @@ class MetWeather(CoordinatorEntity, WeatherEntity): ) ha_forecast.append(ha_item) return ha_forecast + + @property + def device_info(self): + """Device info.""" + return { + "identifiers": {(DOMAIN,)}, + "manufacturer": "Met.no", + "model": "Forecast", + "default_name": "Forecast", + "entry_type": "service", + }