File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ This module provides type hinting and concrete convenience types for node develo
55If cloned to the custom_nodes directory of ComfyUI, types can be imported using:
66
77``` python
8- from comfy_types import IO , ComfyNodeABC, CheckLazyMixin
8+ from comfy. comfy_types import IO , ComfyNodeABC, CheckLazyMixin
99
1010class ExampleNode (ComfyNodeABC ):
1111 @ classmethod
Original file line number Diff line number Diff line change 1- from comfy_types import IO , ComfyNodeABC , InputTypeDict
1+ from comfy . comfy_types import IO , ComfyNodeABC , InputTypeDict
22from inspect import cleandoc
33
44
55class ExampleNode (ComfyNodeABC ):
66 """An example node that just adds 1 to an input integer.
77
8- * Requires an IDE configured with analysis paths etc to be worth looking at .
9- * Not intended for use in ComfyUI .
8+ * Requires a modern IDE to provide any benefit (detail: an IDE configured with analysis paths etc) .
9+ * This node is intended as an example for developers only .
1010 """
1111
1212 DESCRIPTION = cleandoc (__doc__ )
You can’t perform that action at this time.
0 commit comments