From 3ed1356bb66ba19fce0930064d3b41619448c5ef Mon Sep 17 00:00:00 2001 From: Keith Burzinski Date: Sat, 23 May 2026 20:08:08 -0500 Subject: [PATCH] type Co-authored-by: J. Nick Koston --- esphome/components/network/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/network/__init__.py b/esphome/components/network/__init__.py index 44d9b8ff17..572ee7f961 100644 --- a/esphome/components/network/__init__.py +++ b/esphome/components/network/__init__.py @@ -235,6 +235,6 @@ async def to_code(config): @coroutine_with_priority(CoroPriority.NETWORK_SERVICES) -async def network_component_to_code(config): +async def network_component_to_code(config: ConfigType) -> None: var = cg.new_Pvariable(config[CONF_ID]) await cg.register_component(var, config)