8 lines
194 B
Python
8 lines
194 B
Python
|
from homeassistant import core
|
||
|
|
||
|
|
||
|
async def async_setup(hass: core.HomeAssistant, config: dict) -> bool:
|
||
|
"""Set up the Flickerstrip component."""
|
||
|
# @TODO: Add setup code.
|
||
|
return True
|