2019-03-13 09:54:30 +00:00
## Breaking Change:
<!-- What is breaking and why we have to break it. Remove this section only if it was NOT a breaking change. -->
2017-02-23 20:58:18 +00:00
## Description:
2016-02-26 21:38:15 +00:00
2016-10-15 11:46:45 +00:00
**Related issue (if applicable):** fixes #< home-assistant issue number goes here >
2016-02-28 08:59:28 +00:00
2019-05-07 21:18:40 +00:00
**Pull request with documentation for [home-assistant.io ](https://github.com/home-assistant/home-assistant.io ) (if applicable):** home-assistant/home-assistant.io#< home-assistant.io PR number goes here >
2016-05-14 21:02:14 +00:00
2017-02-23 20:58:18 +00:00
## Example entry for `configuration.yaml` (if applicable):
2016-02-27 22:17:20 +00:00
```yaml
2016-02-26 21:38:15 +00:00
2016-02-27 22:17:20 +00:00
```
2016-02-26 21:38:15 +00:00
2017-02-23 20:58:18 +00:00
## Checklist:
2018-01-05 17:31:41 +00:00
- [ ] The code change is tested and works locally.
2018-03-09 20:27:39 +00:00
- [ ] Local tests pass with `tox` . **Your PR cannot be merged unless tests pass**
2018-11-06 18:47:19 +00:00
- [ ] There is no commented out code in this PR.
2019-05-07 21:18:40 +00:00
- [ ] I have followed the [development checklist][dev-checklist]
2016-02-26 21:38:15 +00:00
2016-05-14 21:02:14 +00:00
If user exposed functionality or configuration variables are added/changed:
2018-09-10 12:28:21 +00:00
- [ ] Documentation added/updated in [home-assistant.io ](https://github.com/home-assistant/home-assistant.io )
2016-05-14 21:02:14 +00:00
2016-10-05 14:28:38 +00:00
If the code communicates with devices, web services, or third-party tools:
2019-05-07 21:18:40 +00:00
- [ ] [_The manifest file_][manifest-docs] has all fields filled out correctly. Update and include derived files by running `python3 -m script.hassfest` .
- [ ] New or updated dependencies have been added to `requirements_all.txt` by running `python3 -m script.gen_requirements_all` .
- [ ] Untested files have been added to `.coveragerc` .
2016-03-22 15:39:24 +00:00
If the code does not interact with devices:
2016-02-28 08:59:28 +00:00
- [ ] Tests have been added to verify that the new code works.
2016-02-26 21:38:15 +00:00
2019-05-07 21:18:40 +00:00
[dev-checklist]: https://developers.home-assistant.io/docs/en/development_checklist.html
[manifest-docs]: https://developers.home-assistant.io/docs/en/creating_integration_manifest.html