Fix low speed cover in Overkiz integration (#79416)

Fix low speed cover
This commit is contained in:
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

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: