Skip to content

Commit bcd66ac

Browse files
committed
feat(runtime): change default max enum values to 2000 (#23)
1 parent 810fb54 commit bcd66ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comfy_script/runtime/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def to_bool_enum(enum: list[str | bool], b: bool) -> str:
7575
class RuntimeFactory:
7676
'''RuntimeFactory is ignorant of runtime modes.'''
7777

78-
def __init__(self, *, hidden_inputs: bool = False, max_enum_values: int = 1000, import_fullname_types: bool = False):
78+
def __init__(self, *, hidden_inputs: bool = False, max_enum_values: int = 2000, import_fullname_types: bool = False):
7979
'''
8080
- `hidden_inputs`: Show hidden inputs.
8181

0 commit comments

Comments
 (0)