1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Move a few files from comfy -> comfy_execution.

Python code in the comfy folder should not import things from outside it.
This commit is contained in:
comfyanonymous
2024-08-15 09:37:30 -04:00
parent 5cfe38f41c
commit 5960f946a9
8 changed files with 11 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
from comfy.graph_utils import GraphBuilder, is_link
from comfy.graph import ExecutionBlocker
from comfy_execution.graph_utils import GraphBuilder, is_link
from comfy_execution.graph import ExecutionBlocker
from .tools import VariantSupport
NUM_FLOW_SOCKETS = 5

View File

@@ -1,6 +1,6 @@
import torch
from .tools import VariantSupport
from comfy.graph_utils import GraphBuilder
from comfy_execution.graph_utils import GraphBuilder
class TestLazyMixImages:
@classmethod

View File

@@ -1,4 +1,4 @@
from comfy.graph_utils import GraphBuilder
from comfy_execution.graph_utils import GraphBuilder
from .tools import VariantSupport
@VariantSupport()