From 0b78859e099cff0418cbbb35dfe1fb38f9fa1a66 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Fri, 5 Dec 2025 20:39:25 -0800 Subject: [PATCH] Make MatchType's output default displayname "MATCHTYPE" --- 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 9baf7e316..ec6abd832 100644 --- a/comfy_api/latest/_io.py +++ b/comfy_api/latest/_io.py @@ -858,7 +858,7 @@ class MatchType(ComfyTypeIO): }) class Output(Output): - def __init__(self, template: MatchType.Template, id: str=None, display_name: str=None, tooltip: str=None, + def __init__(self, template: MatchType.Template, id: str=None, display_name: str="MATCHTYPE", tooltip: str=None, is_output_list=False): super().__init__(id, display_name, tooltip, is_output_list) self.template = template