From 122c9d5362547bde53690d07577a03bd312774e0 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Mon, 17 Nov 2025 20:24:41 -0800 Subject: [PATCH] Fix cringe arrows --- comfy_api/latest/_io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_api/latest/_io.py b/comfy_api/latest/_io.py index e9f02a3be..594831336 100644 --- a/comfy_api/latest/_io.py +++ b/comfy_api/latest/_io.py @@ -1325,12 +1325,12 @@ def build_nested_inputs(values: dict[str], paths: dict[str]): while len(lst) <= index: lst.append(None) - # Last element → assign the value directly + # Last element - assign the value directly if is_last: lst[index] = values.pop(key) break - # Non-last element → ensure dict + # Non-last element - ensure dict if lst[index] is None or not isinstance(lst[index], dict): lst[index] = {}