Merge branch 'master' into add-openapi-spec
Some checks failed
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
Build package / Build Test (3.10) (push) Has been cancelled
Build package / Build Test (3.11) (push) Has been cancelled
Build package / Build Test (3.12) (push) Has been cancelled
Build package / Build Test (3.13) (push) Has been cancelled
Build package / Build Test (3.14) (push) Has been cancelled

This commit is contained in:
Matt Miller 2026-04-14 13:14:26 -07:00 committed by GitHub
commit 6867837a88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ class PreviewAny():
"required": {"source": (IO.ANY, {})}, "required": {"source": (IO.ANY, {})},
} }
RETURN_TYPES = () RETURN_TYPES = (IO.STRING,)
FUNCTION = "main" FUNCTION = "main"
OUTPUT_NODE = True OUTPUT_NODE = True
@ -33,7 +33,7 @@ class PreviewAny():
except Exception: except Exception:
value = 'source exists, but could not be serialized.' value = 'source exists, but could not be serialized.'
return {"ui": {"text": (value,)}} return {"ui": {"text": (value,)}, "result": (value,)}
NODE_CLASS_MAPPINGS = { NODE_CLASS_MAPPINGS = {
"PreviewAny": PreviewAny, "PreviewAny": PreviewAny,

View File

@ -1,4 +1,4 @@
comfyui-frontend-package==1.42.10 comfyui-frontend-package==1.42.11
comfyui-workflow-templates==0.9.50 comfyui-workflow-templates==0.9.50
comfyui-embedded-docs==0.4.3 comfyui-embedded-docs==0.4.3
torch torch