1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Update file header (#21054)

* Update file header

* Update __init__.py
This commit is contained in:
Fabian Affolter
2019-02-14 05:35:12 +01:00
committed by Paulus Schoutsen
parent 3a386e627e
commit 161c368c9d
165 changed files with 482 additions and 1346 deletions

View File

@@ -1,10 +1,4 @@
"""
Support for iTach IR Devices.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/remote.itach/
"""
"""Support for iTach IR devices."""
import logging
import voluptuous as vol
@@ -38,7 +32,7 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_CONNADDR): vol.Coerce(int),
vol.Required(CONF_COMMANDS): vol.All(cv.ensure_list, [{
vol.Required(CONF_NAME): cv.string,
vol.Required(CONF_DATA): cv.string
vol.Required(CONF_DATA): cv.string,
}])
}])
})