From a998a3ce4f4c44b568aaa1fd013116cbb5ce6526 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Thu, 24 Jul 2025 17:12:58 -0700 Subject: [PATCH] Prepare a mock ComboDynamic scaffolding for future --- comfy_api/v3/_io.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/comfy_api/v3/_io.py b/comfy_api/v3/_io.py index acd562d79..f9c7a8cc1 100644 --- a/comfy_api/v3/_io.py +++ b/comfy_api/v3/_io.py @@ -822,11 +822,11 @@ class AutogrowDynamic(ComfyTypeI): curr_count += 1 return new_inputs -# io_type="COMFY_COMBODYNAMIC_V3" -class ComboDynamicInput(DynamicInput): - def __init__(self, id: str): - pass - +@comfytype(io_type="COMFY_COMBODYNAMIC_V3") +class ComboDynamic(ComfyTypeI): + class Input(DynamicInput): + def __init__(self, id: str): + pass @comfytype(io_type="COMFY_MATCHTYPE_V3") class MatchType(ComfyTypeIO):