Skip to content
Snippets Groups Projects
Unverified Commit 08871792 authored by Tomek Porozynski's avatar Tomek Porozynski Committed by GitHub
Browse files

Update Supla async_set_cover_position to use "REVEAL_PARTIALLY" (#121663)

parent 664c4e61
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,9 @@ class SuplaCoverEntity(SuplaEntity, CoverEntity):
async def async_set_cover_position(self, **kwargs: Any) -> None:
"""Move the cover to a specific position."""
await self.async_action("REVEAL", percentage=kwargs.get(ATTR_POSITION))
await self.async_action(
"REVEAL_PARTIALLY", percentage=kwargs.get(ATTR_POSITION)
)
@property
def is_closed(self) -> bool | None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment