21 lines
504 B
Python
21 lines
504 B
Python
|
"""The isal integration."""
|
||
|
|
||
|
from __future__ import annotations
|
||
|
|
||
|
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
|