diff --git a/docs/core/entity/button.md b/docs/core/entity/button.md index 7dc46943..c921479c 100644 --- a/docs/core/entity/button.md +++ b/docs/core/entity/button.md @@ -37,4 +37,7 @@ class MyButton(ButtonEntity): def press(self) -> None: """Handle the button press.""" + + async def async_press(self) -> None: + """Handle the button press.""" ```