1
mirror of https://github.com/home-assistant/core synced 2024-07-30 21:18:57 +02:00

Fix sync/async override in sms (#37621)

This commit is contained in:
Franck Nijhof 2020-07-07 20:35:30 +02:00 committed by GitHub
parent aeb0504c1c
commit d0632ab636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,