From 522d923948b9c1e3b265d417ee62783cc8c1e943 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Tue, 25 Mar 2025 16:47:52 -0400 Subject: [PATCH] nit --- comfy_execution/graph.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy_execution/graph.py b/comfy_execution/graph.py index 94425a9aa..a2799b52e 100644 --- a/comfy_execution/graph.py +++ b/comfy_execution/graph.py @@ -63,7 +63,6 @@ def get_input_info( valid_inputs: InputTypeDict | None = None ) -> tuple[str, Literal["required", "optional", "hidden"], InputTypeOptions] | tuple[None, None, None]: """Get the input type, category, and extra info for a given input name. - If valid_inputs is provided, it will be used instead of the class_def.INPUT_TYPES(). Arguments: class_def: The class definition of the node.