Skip to content

Commit dd7c045

Browse files
committed
Temporarily comment out conversion to 'new' (9 month old) COMBO format in get_input_info
1 parent b1b1429 commit dd7c045

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

comfy_execution/graph.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,11 @@ def get_input_info(
9898
extra_info = input_info[1]
9999
else:
100100
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
101+
# if input_type is a list, it is a Combo defined in outdated format; convert it.
102+
# NOTE: uncomment this when we are confident old format going away won't cause too much trouble.
103+
# if isinstance(input_type, list):
104+
# extra_info["options"] = input_type
105+
# input_type = IO.Combo.io_type
105106
return input_type, input_category, extra_info
106107

107108
class TopologicalSort:

0 commit comments

Comments
 (0)