Fix missing DarkSky mdi icon (#26274)

* Fix missing DarkSky mdi icon

Fix mdi icon for DarkSky

* fix icon

* Update weather.py
This commit is contained in:
mbo18 2019-08-29 22:22:52 +02:00 committed by Paulus Schoutsen
parent 5676f6fb86
commit 015adbbac0

View file

@ -193,7 +193,7 @@ SENSOR_TYPES = {
"%",
"%",
"%",
"mdi:weather-partlycloudy",
"mdi:weather-partly-cloudy",
["currently", "hourly", "daily"],
],
"humidity": [
@ -380,11 +380,11 @@ CONDITION_PICTURES = {
"cloudy": ["/static/images/darksky/weather-cloudy.svg", "mdi:weather-cloudy"],
"partly-cloudy-day": [
"/static/images/darksky/weather-partlycloudy.svg",
"mdi:weather-partlycloudy",
"mdi:weather-partly-cloudy",
],
"partly-cloudy-night": [
"/static/images/darksky/weather-cloudy.svg",
"mdi:weather-partlycloudy",
"mdi:weather-partly-cloudy",
],
}