From e234557cf3116a93e5586b883052b71572b1092c Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 29 Apr 2024 10:20:03 +1200 Subject: [PATCH] A wild walrus appeared --- esphome/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/__main__.py b/esphome/__main__.py index df57cf5ab7..a83cbbfeb1 100644 --- a/esphome/__main__.py +++ b/esphome/__main__.py @@ -332,8 +332,8 @@ def upload_program(config, args, host): return 1 # Unknown target platform ota_conf = {} - if CONF_OTA in config: - for ota_item in config.get(CONF_OTA): + if ota := config.get(CONF_OTA): + for ota_item in ota: if ota_item[CONF_PLATFORM] == CONF_ESPHOME: ota_conf = ota_item break