mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-17 18:13:01 +08:00
Temporarily comment out conversion to 'new' (9 month old) COMBO format in get_input_info
This commit is contained in:
parent
b1b1429b43
commit
dd7c045083
@ -98,10 +98,11 @@ def get_input_info(
|
|||||||
extra_info = input_info[1]
|
extra_info = input_info[1]
|
||||||
else:
|
else:
|
||||||
extra_info = {}
|
extra_info = {}
|
||||||
# if input_type is a list, it is a Combo defined in outdated format; convert it
|
# if input_type is a list, it is a Combo defined in outdated format; convert it.
|
||||||
if isinstance(input_type, list):
|
# NOTE: uncomment this when we are confident old format going away won't cause too much trouble.
|
||||||
extra_info["options"] = input_type
|
# if isinstance(input_type, list):
|
||||||
input_type = IO.Combo.io_type
|
# extra_info["options"] = input_type
|
||||||
|
# input_type = IO.Combo.io_type
|
||||||
return input_type, input_category, extra_info
|
return input_type, input_category, extra_info
|
||||||
|
|
||||||
class TopologicalSort:
|
class TopologicalSort:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user