diff --git a/homeassistant/components/apprise/notify.py b/homeassistant/components/apprise/notify.py index 0c8c5b26eeca4b..f999da94531bc0 100644 --- a/homeassistant/components/apprise/notify.py +++ b/homeassistant/components/apprise/notify.py @@ -29,8 +29,11 @@ def get_service(hass, config, discovery_info=None): """Get the Apprise notification service.""" - # Create our object - a_obj = apprise.Apprise() + # Create our Apprise Asset Object + asset = apprise.AppriseAsset(async_mode=False) + + # Create our Apprise Instance (reference our asset) + a_obj = apprise.Apprise(asset=asset) if config.get(CONF_FILE): # Sourced from a Configuration File