From d0632ab636b94d1f9a5743222c31c3b9e831b5bc Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 7 Jul 2020 20:35:30 +0200 Subject: [PATCH] Fix sync/async override in sms (#37621) --- homeassistant/components/sms/notify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/sms/notify.py b/homeassistant/components/sms/notify.py index 0b867b2e0a5..f030409b6ca 100644 --- a/homeassistant/components/sms/notify.py +++ b/homeassistant/components/sms/notify.py @@ -42,7 +42,7 @@ class SMSNotificationService(BaseNotificationService): self.gateway = gateway self.number = number - async def send_message(self, message="", **kwargs): + async def async_send_message(self, message="", **kwargs): """Send SMS message.""" smsinfo = { "Class": -1,