Add "significant change" base (#45555)

This commit is contained in:
Paulus Schoutsen 2021-01-26 14:13:27 +01:00 committed by GitHub
parent 38361b134a
commit d082be787f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 335 additions and 0 deletions

View file

@ -35,6 +35,11 @@ DATA = {
"docs": "https://developers.home-assistant.io/docs/en/reproduce_state_index.html",
"extra": "You will now need to update the code to make sure that every attribute that can occur in the state will cause the right service to be called.",
},
"significant_change": {
"title": "Significant Change",
"docs": "https://developers.home-assistant.io/docs/en/significant_change_index.html",
"extra": "You will now need to update the code to make sure that entities with different device classes are correctly considered.",
},
}
@ -73,4 +78,5 @@ def print_relevant_docs(template: str, info: Info) -> None:
)
if "extra" in data:
print()
print(data["extra"])