mirror of
https://github.com/home-assistant/core.git
synced 2025-05-14 02:49:15 +00:00

Co-authored-by: Martin Hjelmare <marhje52@gmail.com> Co-authored-by: Franck Nijhof <frenck@frenck.nl>
12 lines
222 B
Python
12 lines
222 B
Python
"""Config flow for MyQ integration."""
|
|
|
|
from homeassistant import config_entries
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for MyQ."""
|
|
|
|
VERSION = 1
|