Home Assistant Unofficial Reference
2024.12.1
__init__.py
Go to the documentation of this file.
1
"""The Home Assistant Hardware integration."""
2
3
from
__future__
import
annotations
4
5
from
homeassistant.core
import
HomeAssistant
6
from
homeassistant.helpers
import
config_validation
as
cv
7
from
homeassistant.helpers.typing
import
ConfigType
8
9
DOMAIN =
"homeassistant_hardware"
10
CONFIG_SCHEMA = cv.empty_config_schema(DOMAIN)
11
12
13
async
def
async_setup
(hass: HomeAssistant, config: ConfigType) -> bool:
14
"""Set up the component."""
15
return
True
homeassistant.components.homeassistant_hardware.async_setup
bool async_setup(HomeAssistant hass, ConfigType config)
Definition:
__init__.py:13
homeassistant.core
Definition:
core.py:1
homeassistant.helpers.typing
Definition:
typing.py:1
homeassistant.helpers
Definition:
__init__.py:1
core
homeassistant
components
homeassistant_hardware
__init__.py
Generated by
1.9.1