diff --git a/homeassistant/components/sinch/notify.py b/homeassistant/components/sinch/notify.py index 173873c0a6c..d7d1f242c67 100644 --- a/homeassistant/components/sinch/notify.py +++ b/homeassistant/components/sinch/notify.py @@ -61,7 +61,7 @@ class SinchNotificationService(BaseNotificationService): def send_message(self, message="", **kwargs): """Send a message to a user.""" targets = kwargs.get(ATTR_TARGET, self.default_recipients) - data = kwargs.get(ATTR_DATA, {}) + data = kwargs.get(ATTR_DATA) or {} clx_args = {ATTR_MESSAGE: message, ATTR_SENDER: self.sender}