mirror of
https://github.com/home-assistant/core.git
synced 2025-11-08 18:39:30 +00:00
23 lines
539 B
Python
23 lines
539 B
Python
"""Config flow for Volvo On Call integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
class VolvoOnCallConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Volvo On Call."""
|
|
|
|
VERSION = 1
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle the initial step."""
|
|
|
|
return self.async_abort(reason="deprecated")
|