From e1975567a301712a6c3f06d9e1a8fce8a5132010 Mon Sep 17 00:00:00 2001 From: bigcat88 Date: Thu, 10 Jul 2025 06:38:49 +0300 Subject: [PATCH] removed widgetType from serialization --- comfy_api/v3/io.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy_api/v3/io.py b/comfy_api/v3/io.py index 6a291b86a..ce6ac4f70 100644 --- a/comfy_api/v3/io.py +++ b/comfy_api/v3/io.py @@ -204,7 +204,6 @@ class WidgetInputV3(InputV3): return super().as_dict_V1() | prune_dict({ "default": self.default, "socketless": self.socketless, - "widgetType": self.widgetType, "forceInput": self.force_input, })