diff --git a/homeassistant/components/aws/notify.py b/homeassistant/components/aws/notify.py index 37b49d44a88..c4e450a4aab 100644 --- a/homeassistant/components/aws/notify.py +++ b/homeassistant/components/aws/notify.py @@ -7,12 +7,12 @@ import logging from aiobotocore.session import AioSession from homeassistant.components.notify import ( + ATTR_DATA, ATTR_TARGET, ATTR_TITLE, ATTR_TITLE_DEFAULT, BaseNotificationService, ) -from homeassistant.components.notify.const import ATTR_DATA from homeassistant.const import ( CONF_NAME, CONF_PLATFORM, diff --git a/homeassistant/components/simplepush/notify.py b/homeassistant/components/simplepush/notify.py index 36abf31fcb7..108aaf3cbf6 100644 --- a/homeassistant/components/simplepush/notify.py +++ b/homeassistant/components/simplepush/notify.py @@ -7,12 +7,12 @@ from typing import Any from simplepush import BadRequest, UnknownError, send, send_encrypted from homeassistant.components.notify import ( + ATTR_DATA, ATTR_TITLE, ATTR_TITLE_DEFAULT, PLATFORM_SCHEMA as BASE_PLATFORM_SCHEMA, BaseNotificationService, ) -from homeassistant.components.notify.const import ATTR_DATA from homeassistant.const import CONF_EVENT, CONF_PASSWORD from homeassistant.core import HomeAssistant from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue