From f4b31989f551c04a7f7fb83d86487dba41eb1f98 Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sun, 8 Dec 2024 14:45:52 +1100 Subject: [PATCH] Fix import in comfy_types doc / sample --- comfy/comfy_types/README.md | 2 +- comfy/comfy_types/examples/example_nodes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy/comfy_types/README.md b/comfy/comfy_types/README.md index 869851e7c..20a786a5e 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 b6465f39e..62d561622 100644 --- a/comfy/comfy_types/examples/example_nodes.py +++ b/comfy/comfy_types/examples/example_nodes.py @@ -1,4 +1,4 @@ -from comfy_types import IO, ComfyNodeABC, InputTypeDict +from comfy.comfy_types import IO, ComfyNodeABC, InputTypeDict from inspect import cleandoc