We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfd43f9 commit 28d9024Copy full SHA for 28d9024
custom_components/august_access_codes/__init__.py
@@ -21,6 +21,7 @@
21
SupportsResponse,
22
)
23
from homeassistant.exceptions import ServiceValidationError
24
+from homeassistant.helpers import config_validation as cv
25
import homeassistant.helpers.device_registry as dr
26
import homeassistant.helpers.entity_registry as er
27
from homeassistant.helpers.typing import ConfigType
@@ -40,6 +41,9 @@
40
41
_LOGGER = logging.getLogger(__name__)
42
43
44
+CONFIG_SCHEMA = cv.config_entry_only_config_schema(DOMAIN)
45
+
46
47
async def async_setup(hass: HomeAssistant, config_type: ConfigType) -> bool:
48
"""Setup services."""
49
0 commit comments