mirror of
https://github.com/home-assistant/core.git
synced 2025-11-17 23:10:28 +00:00
* chore(sunweg): remove sunweg integration * Update homeassistant/components/sunweg/strings.json Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com> * Update homeassistant/components/sunweg/manifest.json Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com> * feat: added async remove entry * Clean setup_entry; add tests --------- Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com> Co-authored-by: abmantis <amfcalt@gmail.com>
12 lines
217 B
Python
12 lines
217 B
Python
"""Config flow for Sun WEG integration."""
|
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from . import DOMAIN
|
|
|
|
|
|
class SunWEGConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Config flow class."""
|
|
|
|
VERSION = 1
|