Fix low speed cover in Overkiz integration (#79416)

Fix low speed cover
pull/79423/head
Mick Vleeshouwer 2022-10-01 18:33:41 +02:00 committed by GitHub
parent 82af726e21
commit e7724a6593
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class LowSpeedCover(VerticalCover):
) -> None:
"""Initialize the device."""
super().__init__(device_url, coordinator)
self._attr_name = f"{self._attr_name} Low Speed"
self._attr_name = "Low speed"
self._attr_unique_id = f"{self._attr_unique_id}_low_speed"
async def async_set_cover_position(self, **kwargs: Any) -> None: