"""Config flow for the Hardkernel integration.""" from __future__ import annotations from typing import Any from homeassistant.config_entries import ConfigFlow, ConfigFlowResult from .const import DOMAIN class HardkernelConfigFlow(ConfigFlow, domain=DOMAIN): """Handle a config flow for Hardkernel.""" VERSION = 1 async def async_step_system( self, data: dict[str, Any] | None = None ) -> ConfigFlowResult: """Handle the initial step.""" return self.async_create_entry(title="Hardkernel", data={})