From d4b99c0fd0245fed4012e34eecb35c748a99ddce Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Mon, 18 May 2026 17:44:28 -0700 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Alexis Rolland --- comfy_extras/nodes_images.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index 42298d6bd..fd743b611 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -1160,19 +1160,19 @@ class SaveImageAdvanced(IO.ComfyNode): ), ), IO.DynamicCombo.Input( - "image_format", + "format", options=[ IO.DynamicCombo.Option("png", [ IO.Combo.Input("bit_depth", options=["8-bit", "16-bit"], default="8-bit", advanced=True), - IO.Combo.Input("colorspace", options=["sRGB"], + IO.Combo.Input("input_color_space", options=["sRGB"], default="sRGB", advanced=True), ]), IO.DynamicCombo.Option("exr", [ IO.Combo.Input("bit_depth", options=["32-bit float"], default="32-bit float", advanced=True), IO.Combo.Input( - "colorspace", + "input_color_space", options=["sRGB", "HDR", "linear"], default="sRGB", advanced=True,