Fix ComfyExtension registration not working

This commit is contained in:
Jedrzej Kosinski
2025-07-30 19:42:44 -07:00
parent 7a522e4b6f
commit f90beb73f8
3 changed files with 7 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ from comfy_api.latest import (
)
from typing import Type, TYPE_CHECKING
from comfy_api.internal.async_to_sync import create_sync_class
from comfy_api.latest import io, ui #noqa: F401
from comfy_api.latest import io, ui, ComfyExtension #noqa: F401
class ComfyAPIAdapter_v0_0_2(ComfyAPI_latest):
@@ -41,4 +41,5 @@ __all__ = [
"Input",
"InputImpl",
"Types",
"ComfyExtension",
]