Pipeline Typing¶
DownstreamConnectable = Union['Step', 'GlobalStep']
module-attribute
¶
Alias for the Step
types that can be connected as downstream steps.
DownstreamConnectableSteps = TypeVar('DownstreamConnectableSteps', bound=DownstreamConnectable, covariant=True)
module-attribute
¶
Type for the Step
types that can be connected as downstream steps.
UpstreamConnectableSteps = TypeVar('UpstreamConnectableSteps', bound=Union['Step', 'GlobalStep', 'GeneratorStep'])
module-attribute
¶
Type for the Step
types that can be connected as upstream steps.