Skip to content
Snippets Groups Projects
Unverified Commit 7c4f08e6 authored by Teemu R's avatar Teemu R Committed by GitHub
Browse files

Fix xiaomi_miio button platform regression (#100527)

parent c3f74ae0
No related branches found
No related tags found
No related merge requests found
......@@ -169,8 +169,12 @@ class XiaomiGenericCoordinatedButton(XiaomiCoordinatedMiioEntity, ButtonEntity):
async def async_press(self) -> None:
"""Press the button."""
method = getattr(self._device, self.entity_description.method_press)
await self._try_command(
self.entity_description.method_press_error_message,
method,
self.entity_description.method_press_params,
)
params = self.entity_description.method_press_params
if params is not None:
await self._try_command(
self.entity_description.method_press_error_message, method, params
)
else:
await self._try_command(
self.entity_description.method_press_error_message, method
)
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