@@ -369,7 +369,7 @@ def only_nodes(self, *node_names: str) -> "Pipeline":
369
369
nodes by name.
370
370
371
371
Args:
372
- node_names: One or more node names. The returned ``Pipeline``
372
+ * node_names: One or more node names. The returned ``Pipeline``
373
373
will only contain these nodes.
374
374
375
375
Raises:
@@ -486,7 +486,7 @@ def only_nodes_with_inputs(self, *inputs: str) -> "Pipeline":
486
486
matches to the fully-qualified name only (i.e. name@format).
487
487
488
488
Args:
489
- inputs: A list of inputs which should be used as a starting
489
+ * inputs: A list of inputs which should be used as a starting
490
490
point of the new ``Pipeline``.
491
491
492
492
Raises:
@@ -512,7 +512,7 @@ def from_inputs(self, *inputs: str) -> "Pipeline":
512
512
matches to the fully-qualified name only (i.e. name@format).
513
513
514
514
Args:
515
- inputs: A list of inputs which should be used as a starting point
515
+ * inputs: A list of inputs which should be used as a starting point
516
516
of the new ``Pipeline``
517
517
518
518
Raises:
@@ -552,7 +552,7 @@ def only_nodes_with_outputs(self, *outputs: str) -> "Pipeline":
552
552
to the fully-qualified name only (i.e. name@format).
553
553
554
554
Args:
555
- outputs: A list of outputs which should be the final outputs
555
+ * outputs: A list of outputs which should be the final outputs
556
556
of the new ``Pipeline``.
557
557
558
558
Raises:
@@ -577,7 +577,7 @@ def to_outputs(self, *outputs: str) -> "Pipeline":
577
577
to the fully-qualified name only (i.e. name@format).
578
578
579
579
Args:
580
- outputs: A list of outputs which should be the final outputs of
580
+ * outputs: A list of outputs which should be the final outputs of
581
581
the new ``Pipeline``.
582
582
583
583
Raises:
@@ -613,7 +613,7 @@ def from_nodes(self, *node_names: str) -> "Pipeline":
613
613
directly or transitively on the provided nodes.
614
614
615
615
Args:
616
- node_names: A list of node_names which should be used as a
616
+ * node_names: A list of node_names which should be used as a
617
617
starting point of the new ``Pipeline``.
618
618
Raises:
619
619
ValueError: Raised when any of the given names do not exist in the
@@ -634,7 +634,7 @@ def to_nodes(self, *node_names: str) -> "Pipeline":
634
634
or transitively by the provided nodes.
635
635
636
636
Args:
637
- node_names: A list of node_names which should be used as an
637
+ * node_names: A list of node_names which should be used as an
638
638
end point of the new ``Pipeline``.
639
639
Raises:
640
640
ValueError: Raised when any of the given names do not exist in the
@@ -656,7 +656,7 @@ def only_nodes_with_tags(self, *tags: str) -> "Pipeline":
656
656
are provided.
657
657
658
658
Args:
659
- tags: A list of node tags which should be used to lookup
659
+ * tags: A list of node tags which should be used to lookup
660
660
the nodes of the new ``Pipeline``.
661
661
Returns:
662
662
Pipeline: A new ``Pipeline`` object, containing a subset of the
@@ -673,7 +673,7 @@ def decorate(self, *decorators: Callable) -> "Pipeline":
673
673
return a copy of the current ``Pipeline`` object.
674
674
675
675
Args:
676
- decorators: Decorators to be applied on all node functions in
676
+ * decorators: Decorators to be applied on all node functions in
677
677
the pipeline, always applied from right to left.
678
678
679
679
Returns:
0 commit comments