parent
7dedf173ad
commit
c8d7e1346c
|
@ -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…
Reference in New Issue