Begin porting io, ui, and resources to be compatible with versioned Core API

This commit is contained in:
Jedrzej Kosinski 2025-07-23 20:52:05 -07:00
parent 7ef18d5afd
commit 7d710727a9
3 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,6 @@ from comfy_execution.graph import ExecutionBlocker
# from comfy_extras.nodes_images import SVG as SVG_ # NOTE: needs to be moved before can be imported due to circular reference
class FolderType(str, Enum):
input = "input"
output = "output"
@ -1502,3 +1501,6 @@ class _UIOutput(ABC):
@abstractmethod
def as_dict(self) -> dict:
...
class IO:
FolderType = FolderType