Skip to content

Pipeline with more than one Output block can be built #72

Description

@andruekonst

Currently the FunctionalPipelineBuilder does not check that only one Output block per output exists.

For example:

with FunctionalPipelineBuilder() as b:
    X = b.Input('X')()
    b.Output('some_name')(X)
    Y = b.Input('Y')()
    b.Output('some_name')(Y)  # there should be raised exception

b.build()  # or there

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions