Skip to content

Commit 270c2b0

Browse files
Correcting the pipeline object definition (#34899)
* Correcting the pipeline object definition * Corrected the definition * lint correction * Corrected formatting
1 parent f4a0f2b commit 270c2b0

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

sdks/python/apache_beam/pipeline.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,12 @@
115115

116116

117117
class Pipeline(HasDisplayData):
118-
"""A pipeline object that manages a DAG of
119-
:class:`~apache_beam.pvalue.PValue` s and their
120-
:class:`~apache_beam.transforms.ptransform.PTransform` s.
118+
"""A pipeline object that manages a DAG of
119+
:class:`~apache_beam.transforms.ptransform.PTransform` s
120+
and their :class:`~apache_beam.pvalue.PValue` s.
121121
122-
Conceptually the :class:`~apache_beam.pvalue.PValue` s are the DAG's nodes and
123-
the :class:`~apache_beam.transforms.ptransform.PTransform` s computing
124-
the :class:`~apache_beam.pvalue.PValue` s are the edges.
122+
Conceptually the :class:`~apache_beam.transforms.ptransform.PTransform` s are
123+
the DAG's nodes and the :class:`~apache_beam.pvalue.PValue` s are the edges.
125124
126125
All the transforms applied to the pipeline must have distinct full labels.
127126
If same transform instance needs to be applied then the right shift operator

0 commit comments

Comments
 (0)