diff --git a/homeassistant/components/accuweather/weather.py b/homeassistant/components/accuweather/weather.py index a17c1a090b1..c97cc44aea3 100644 --- a/homeassistant/components/accuweather/weather.py +++ b/homeassistant/components/accuweather/weather.py @@ -73,6 +73,12 @@ class AccuWeatherEntity(CoordinatorEntity, WeatherEntity): identifiers={(DOMAIN, coordinator.location_key)}, manufacturer=MANUFACTURER, name=NAME, + # You don't need to provide specific details for the URL, + # so passing in _ characters is fine if the location key + # is correct + configuration_url="http://accuweather.com/en/" + f"_/_/{coordinator.location_key}/" + f"weather-forecast/{coordinator.location_key}/", ) @property