Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from custom_nodes.Comfy_KepListStuff.nodes.deprecated import StackImages
from custom_nodes.Comfy_KepListStuff.nodes.images import (
from .nodes.deprecated import StackImages
from .nodes.images import (
ImageLabelOverlay,
EmptyImages,
XYImage,
ImageListLoader,
VariableImageBuilder,
)
from custom_nodes.Comfy_KepListStuff.nodes.list_utils import (
from .nodes.list_utils import (
ListLengthNode,
JoinFloatLists,
JoinImageLists,
Expand All @@ -16,13 +16,13 @@
JoinListAny,
StringListFromNewline,
)
from custom_nodes.Comfy_KepListStuff.nodes.range_nodes import (
from .nodes.range_nodes import (
IntRangeNode,
FloatRangeNode,
IntNumStepsRangeNode,
FloatNumStepsRangeNode,
)
from custom_nodes.Comfy_KepListStuff.nodes.xy import UnzippedProductAny
from .nodes.xy import UnzippedProductAny

NODE_CLASS_MAPPINGS = {
"Range(Step) - Int": IntRangeNode,
Expand Down
2 changes: 1 addition & 1 deletion nodes/deprecated.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from torch import Tensor
import matplotlib.font_manager as fm

from custom_nodes.Comfy_KepListStuff.utils import tensor2pil, pil2tensor
from ..utils import tensor2pil, pil2tensor

# Hack: string type that is always equal in not equal comparisons
class AnyType(str):
Expand Down
2 changes: 1 addition & 1 deletion nodes/images.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import matplotlib.font_manager as fm
from torch import Tensor

from custom_nodes.Comfy_KepListStuff.utils import (
from ..utils import (
zip_with_fill,
tensor2pil,
pil2tensor,
Expand Down
2 changes: 1 addition & 1 deletion nodes/list_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from torch import Tensor

from custom_nodes.Comfy_KepListStuff.utils import AnyType
from ..utils import AnyType

any_type = AnyType("*")

Expand Down
2 changes: 1 addition & 1 deletion nodes/range_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import numpy as np

from custom_nodes.Comfy_KepListStuff.utils import (
from ..utils import (
error_if_mismatched_list_args,
zip_with_fill,
)
Expand Down