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

Add support for IoT class in manifest (#46935)

This commit is contained in:
Franck Nijhof
2021-04-15 10:21:38 +02:00
committed by GitHub
parent 985b4a581a
commit 055cdc64c0
917 changed files with 2327 additions and 1467 deletions

View File

@@ -67,7 +67,7 @@ class Integration:
return integrations
path: pathlib.Path = attr.ib()
manifest: dict | None = attr.ib(default=None)
manifest: dict[str, Any] | None = attr.ib(default=None)
errors: list[Error] = attr.ib(factory=list)
warnings: list[Error] = attr.ib(factory=list)