ComfyUI/comfy_api/input/__init__.py
Terry Jia 57fc06ad6b
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
linear curve
2026-03-16 16:06:25 -04:00

23 lines
398 B
Python

# This file only exists for backwards compatibility.
from comfy_api.latest._input import (
ImageInput,
AudioInput,
MaskInput,
LatentInput,
VideoInput,
CurveInput,
MonotoneCubicCurve,
LinearCurve,
)
__all__ = [
"ImageInput",
"AudioInput",
"MaskInput",
"LatentInput",
"VideoInput",
"CurveInput",
"MonotoneCubicCurve",
"LinearCurve",
]