Add icon translations to Hydrawise (#111810)

pull/111954/head
Joost Lekkerkerker 2024-03-01 12:29:23 +01:00 committed by GitHub
parent 3d987a9190
commit fd9e9ebf50
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -0,0 +1,9 @@
{
"entity": {
"sensor": {
"watering_time": {
"default": "mdi:water-pump"
}
}
}
}

View File

@ -33,7 +33,6 @@ SENSOR_TYPES: tuple[SensorEntityDescription, ...] = (
SensorEntityDescription(
key="watering_time",
translation_key="watering_time",
icon="mdi:water-pump",
native_unit_of_measurement=UnitOfTime.MINUTES,
),
)