mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 03:37:51 +00:00
parent
fa8ae0865e
commit
b57c60ad7a
@ -705,8 +705,17 @@ async def async_process_component_config(
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
p_integration = await async_get_integration(hass, p_name)
|
p_integration = await async_get_integration(hass, p_name)
|
||||||
|
except IntegrationNotFound:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if (not hass.config.skip_pip and p_integration.requirements and
|
||||||
|
not await async_process_requirements(
|
||||||
|
hass, p_integration.domain, p_integration.requirements)):
|
||||||
|
continue
|
||||||
|
|
||||||
|
try:
|
||||||
platform = p_integration.get_platform(domain)
|
platform = p_integration.get_platform(domain)
|
||||||
except (IntegrationNotFound, ImportError):
|
except ImportError:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Validate platform specific schema
|
# Validate platform specific schema
|
||||||
|
Loading…
x
Reference in New Issue
Block a user