From a4253f49e6d7d15247bf3f90d3edf3e5716fb7a5 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Thu, 24 Jul 2025 21:27:15 -0700 Subject: [PATCH] Fixed some docstrings --- comfy_api/latest/_io.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comfy_api/latest/_io.py b/comfy_api/latest/_io.py index c527190ec..ce7dbb434 100644 --- a/comfy_api/latest/_io.py +++ b/comfy_api/latest/_io.py @@ -96,8 +96,8 @@ def comfytype(io_type: str, **kwargs): A ComfyType may have the following attributes: - Type = - - class Input(InputV3): ... - - class Output(OutputV3): ... + - class Input(Input): ... + - class Output(Output): ... ''' def decorator(cls: T) -> T: if isinstance(cls, _ComfyType) or issubclass(cls, _ComfyType): @@ -737,7 +737,7 @@ class MultiType: @property def io_types(self) -> list[type[Input]]: ''' - Returns list of InputV3 class types permitted. + Returns list of Input class types permitted. ''' io_types = [] for x in self._io_types: