31 lines
1.4 KiB
Markdown
31 lines
1.4 KiB
Markdown
**Description:**
|
|
|
|
|
|
**Related issue (if applicable):** fixes #
|
|
|
|
**Pull request in [home-assistant.io](https://github.com/home-assistant/home-assistant.io) with documentation (if applicable):** home-assistant/home-assistant.io#
|
|
|
|
**Example entry for `configuration.yaml` (if applicable):**
|
|
```yaml
|
|
|
|
```
|
|
|
|
**Checklist:**
|
|
|
|
If user exposed functionality or configuration variables are added/changed:
|
|
- [ ] Documentation added/updated in [home-assistant.io](https://github.com/home-assistant/home-assistant.io)
|
|
|
|
If code communicates with devices, web services, or a:
|
|
- [ ] Local tests with `tox` run successfully. **Your PR cannot be merged unless tests pass**
|
|
- [ ] New dependencies have been added to the `REQUIREMENTS` variable ([example][ex-requir]).
|
|
- [ ] New dependencies are only imported inside functions that use them ([example][ex-import]).
|
|
- [ ] New dependencies have been added to `requirements_all.txt` by running `script/gen_requirements_all.py`.
|
|
- [ ] New files were added to `.coveragerc`.
|
|
|
|
If the code does not interact with devices:
|
|
- [ ] Local tests with `tox` run successfully. **Your PR cannot be merged unless tests pass**
|
|
- [ ] Tests have been added to verify that the new code works.
|
|
|
|
[ex-requir]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard.py#L16
|
|
[ex-import]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard.py#L51
|