api-nodes: fixed dynamic pricing format; import comfy_io directly (#10336)

This commit is contained in:
Alexander Piskun
2025-10-14 09:55:56 +03:00
committed by GitHub
parent 84867067ea
commit 7a883849ea
19 changed files with 1331 additions and 1322 deletions

View File

@@ -114,7 +114,9 @@ if TYPE_CHECKING:
ComfyAPISync: Type[comfy_api.latest.generated.ComfyAPISyncStub.ComfyAPISyncStub]
ComfyAPISync = create_sync_class(ComfyAPI_latest)
comfy_io = io # create the new alias for io
# create new aliases for io and ui
IO = io
UI = ui
__all__ = [
"ComfyAPI",
@@ -124,6 +126,7 @@ __all__ = [
"Types",
"ComfyExtension",
"io",
"comfy_io",
"IO",
"ui",
"UI",
]