We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b1429 commit dd7c045Copy full SHA for dd7c045
comfy_execution/graph.py
@@ -98,10 +98,11 @@ def get_input_info(
98
extra_info = input_info[1]
99
else:
100
extra_info = {}
101
- # if input_type is a list, it is a Combo defined in outdated format; convert it
102
- if isinstance(input_type, list):
103
- extra_info["options"] = input_type
104
- input_type = IO.Combo.io_type
+ # if input_type is a list, it is a Combo defined in outdated format; convert it.
+ # NOTE: uncomment this when we are confident old format going away won't cause too much trouble.
+ # if isinstance(input_type, list):
+ # extra_info["options"] = input_type
105
+ # input_type = IO.Combo.io_type
106
return input_type, input_category, extra_info
107
108
class TopologicalSort:
0 commit comments