Add empty config schema to mobile_app (#93900)
This commit is contained in:
parent
a6b6b03f2e
commit
fd08cfb074
1 changed files with 7 additions and 1 deletions
|
@ -10,7 +10,11 @@ from homeassistant.components.webhook import (
|
|||
from homeassistant.config_entries import ConfigEntry
|
||||
from homeassistant.const import ATTR_DEVICE_ID, CONF_WEBHOOK_ID, Platform
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers import device_registry as dr, discovery
|
||||
from homeassistant.helpers import (
|
||||
config_validation as cv,
|
||||
device_registry as dr,
|
||||
discovery,
|
||||
)
|
||||
from homeassistant.helpers.storage import Store
|
||||
from homeassistant.helpers.typing import ConfigType
|
||||
|
||||
|
@ -36,6 +40,8 @@ from .webhook import handle_webhook
|
|||
|
||||
PLATFORMS = [Platform.SENSOR, Platform.BINARY_SENSOR, Platform.DEVICE_TRACKER]
|
||||
|
||||
CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
|
||||
|
||||
|
||||
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
||||
"""Set up the mobile app component."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue