From b62672a8bad90b204e7fdf8b0afe99bc9e47f18b Mon Sep 17 00:00:00 2001 From: Terry Jia Date: Mon, 2 Mar 2026 20:56:54 -0500 Subject: [PATCH] code improve --- comfy_api/latest/_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy_api/latest/_io.py b/comfy_api/latest/_io.py index 3f79cf134..048538da0 100644 --- a/comfy_api/latest/_io.py +++ b/comfy_api/latest/_io.py @@ -1247,7 +1247,7 @@ class Curve(ComfyTypeIO): socketless: bool=True, default: list[tuple[float, float]]=None, advanced: bool=None): super().__init__(id, display_name, optional, tooltip, None, default, socketless, None, None, None, None, advanced) if default is None: - self.default = [[0.0, 0.0], [1.0, 1.0]] + self.default = [(0.0, 0.0), (1.0, 1.0)] DYNAMIC_INPUT_LOOKUP: dict[str, Callable[[dict[str, Any], dict[str, Any], tuple[str, dict[str, Any]], str, list[str] | None], None]] = {}