1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Allow disabling integrations in manifest, block uuid package being installed and disable ezviz (#38444)

This commit is contained in:
Paulus Schoutsen
2020-08-26 10:20:14 +02:00
committed by GitHub
parent eaac00acfc
commit 2a9da208d4
11 changed files with 40 additions and 5 deletions

View File

@@ -73,6 +73,11 @@ class Integration:
"""Integration domain."""
return self.path.name
@property
def disabled(self) -> Optional[str]:
"""List of disabled."""
return self.manifest.get("disabled")
@property
def requirements(self) -> List[str]:
"""List of requirements."""