From 556809b4e572210647d8caf14990beb305bd2366 Mon Sep 17 00:00:00 2001 From: Rapsssito Date: Wed, 21 Aug 2024 19:33:46 +0200 Subject: [PATCH] Add missing comma --- esphome/components/wifi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/wifi/__init__.py b/esphome/components/wifi/__init__.py index 1dca38bb69..b834fcefef 100644 --- a/esphome/components/wifi/__init__.py +++ b/esphome/components/wifi/__init__.py @@ -494,7 +494,7 @@ async def wifi_disable_to_code(config, action_id, template_arg, args): cv.Required(CONF_SSID): cv.templatable(cv.ssid), cv.Required(CONF_PASSWORD): cv.templatable(validate_password), } - ) + ), ) async def wifi_save_settings_to_code(config, action_id, template_arg, args): var = cg.new_Pvariable(action_id, template_arg)