[BEAM-1345] Annotate public members of pvalue.
Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/d0da682d Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/d0da682d Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/d0da682d Branch: refs/heads/release-2.0.0 Commit: d0da682d5e981217c90571febdff728b8abbbc14 Parents: 2bb95fd Author: Robert Bradshaw <[email protected]> Authored: Thu May 11 12:07:00 2017 -0700 Committer: Ahmet Altay <[email protected]> Committed: Thu May 11 16:20:37 2017 -0700 ---------------------------------------------------------------------- sdks/python/apache_beam/pvalue.py | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/d0da682d/sdks/python/apache_beam/pvalue.py ---------------------------------------------------------------------- diff --git a/sdks/python/apache_beam/pvalue.py b/sdks/python/apache_beam/pvalue.py index fa91fe3..7385e82 100644 --- a/sdks/python/apache_beam/pvalue.py +++ b/sdks/python/apache_beam/pvalue.py @@ -31,6 +31,17 @@ import itertools from apache_beam import typehints +__all__ = [ + 'PCollection', + 'TaggedOutput', + 'AsSingleton', + 'AsIter', + 'AsList', + 'AsDict', + 'EmptySideInput', +] + + class PValue(object): """Base class for PCollection.
