We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87bb8c1 commit 2910758Copy full SHA for 2910758
1 file changed
custom_components/ir_light/__init__.py
@@ -1,8 +1,11 @@
1
"""Main component for IR Light"""
2
+import homeassistant.helpers.config_validation as cv
3
4
DOMAIN = "ir_light"
5
PLATFORMS = ["light"]
6
7
+CONFIG_SCHEMA = cv.config_entry_only_config_schema("ir_light")
8
+
9
async def async_setup(hass, config):
10
"""Component configuration"""
11
return True
0 commit comments