mirror of
https://github.com/home-assistant/core.git
synced 2026-06-30 19:26:31 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
19 lines
468 B
Python
19 lines
468 B
Python
"""The isal integration."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import config_validation as cv
|
|
from homeassistant.helpers.typing import ConfigType
|
|
|
|
DOMAIN = "isal"
|
|
|
|
CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
|
"""Set up up isal.
|
|
|
|
This integration is only used so that isal can be an optional
|
|
dep for aiohttp-fast-zlib.
|
|
"""
|
|
return True
|