mirror of
https://github.com/home-assistant/core.git
synced 2026-09-06 21:41:28 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
12 lines
244 B
Python
12 lines
244 B
Python
"""Config flow to configure Permobil integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class PermobilConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Permobil integration config flow."""
|
|
|
|
VERSION = 1
|