1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Fix empty components (#23177)

This commit is contained in:
Paulus Schoutsen
2019-04-17 19:17:13 -07:00
committed by Jason Hu
parent 6bb4199824
commit 77244eab1e
2 changed files with 5 additions and 5 deletions

View File

@@ -51,11 +51,11 @@ CUSTOM_WARNING = (
_UNDEF = object()
def manifest_from_legacy_module(module: ModuleType) -> Dict:
def manifest_from_legacy_module(domain: str, module: ModuleType) -> Dict:
"""Generate a manifest from a legacy module."""
return {
'domain': module.DOMAIN, # type: ignore
'name': module.DOMAIN, # type: ignore
'domain': domain,
'name': domain,
'documentation': None,
'requirements': getattr(module, 'REQUIREMENTS', []),
'dependencies': getattr(module, 'DEPENDENCIES', []),
@@ -106,7 +106,7 @@ class Integration:
return cls(
hass, comp.__name__, pathlib.Path(comp.__file__).parent,
manifest_from_legacy_module(comp)
manifest_from_legacy_module(domain, comp)
)
def __init__(self, hass: 'HomeAssistant', pkg_path: str,