Merge pull request #2226 from home-assistant/release-0-40

0.40
This commit is contained in:
Paulus Schoutsen 2017-03-11 14:14:28 -08:00 committed by GitHub
commit 0f4eb3885b
46 changed files with 1155 additions and 52 deletions

View file

@ -56,7 +56,7 @@ def async_setup_platform(hass, config, async_add_entities,
# Setup your platform inside of the event loop
```
The only difference with the original parameters is that the add_entities function has been replaced by the coroutine `async_add_entities`.
The only difference with the original parameters is that the add_entities function has been replaced by the async friendly callback `async_add_entities`.
## {% linkable_title Implementing an async entity %}