Remove HELP attribute from object_info in PromptServer class

This commit is contained in:
Benjamin Lu 2025-05-20 18:33:56 -04:00
parent 5cef542831
commit 5249ad0280

View File

@ -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")