From 5249ad02805c9b055b106381f47621c4df5f093b Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Tue, 20 May 2025 18:33:56 -0400 Subject: [PATCH] Remove HELP attribute from object_info in PromptServer class --- server.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/server.py b/server.py index 513bfb338..de9e70a41 100644 --- a/server.py +++ b/server.py @@ -584,9 +584,6 @@ class PromptServer(): if hasattr(obj_class, 'API_NODE'): info['api_node'] = obj_class.API_NODE - - if hasattr(obj_class, 'HELP'): - info['help'] = obj_class.HELP return info @routes.get("/object_info")