Add plugin option [hassfest] (#65024)

This commit is contained in:
Marc Mueller 2022-01-27 05:52:09 +01:00 committed by GitHub
parent 2325cacb04
commit f6c679699f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 3 deletions

View file

@ -32,6 +32,7 @@ class Config:
requirements: bool = attr.ib()
errors: list[Error] = attr.ib(factory=list)
cache: dict[str, Any] = attr.ib(factory=dict)
plugins: set[str] = attr.ib(factory=set)
def add_error(self, *args: Any, **kwargs: Any) -> None:
"""Add an error."""