From 67758f50f3d6ba9e275cdbcd62d1c7785b2bf27e Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Tue, 31 Dec 2024 19:41:09 +1100 Subject: [PATCH] Fix custom node type-hinting examples (#6281) * Fix import in comfy_types doc / sample * Clarify docstring --- comfy/comfy_types/README.md | 2 +- comfy/comfy_types/examples/example_nodes.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/comfy/comfy_types/README.md b/comfy/comfy_types/README.md index 869851e7..20a786a5 100644 --- a/comfy/comfy_types/README.md +++ b/comfy/comfy_types/README.md @@ -5,7 +5,7 @@ This module provides type hinting and concrete convenience types for node develo If cloned to the custom_nodes directory of ComfyUI, types can be imported using: ```python -from comfy_types import IO, ComfyNodeABC, CheckLazyMixin +from comfy.comfy_types import IO, ComfyNodeABC, CheckLazyMixin class ExampleNode(ComfyNodeABC): @classmethod diff --git a/comfy/comfy_types/examples/example_nodes.py b/comfy/comfy_types/examples/example_nodes.py index b6465f39..6e19c545 100644 --- a/comfy/comfy_types/examples/example_nodes.py +++ b/comfy/comfy_types/examples/example_nodes.py @@ -1,12 +1,12 @@ -from comfy_types import IO, ComfyNodeABC, InputTypeDict +from comfy.comfy_types import IO, ComfyNodeABC, InputTypeDict from inspect import cleandoc class ExampleNode(ComfyNodeABC): """An example node that just adds 1 to an input integer. - * Requires an IDE configured with analysis paths etc to be worth looking at. - * Not intended for use in ComfyUI. + * Requires a modern IDE to provide any benefit (detail: an IDE configured with analysis paths etc). + * This node is intended as an example for developers only. """ DESCRIPTION = cleandoc(__doc__)