mirror of
https://github.com/home-assistant/core.git
synced 2026-07-13 17:44:45 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
12 lines
241 B
Python
12 lines
241 B
Python
"""Config flow for Plum Lightpad."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class PlumLightpadConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Config flow for Plum Lightpad integration."""
|
|
|
|
VERSION = 1
|