[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/d531219f Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/d531219f Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/d531219f Branch: refs/heads/master Commit: d531219fcaac19d483d108c8e7df4476034c25f7 Parents: 0fd0409 Author: Robert Bradshaw <[email protected]> Authored: Thu May 11 12:07:00 2017 -0700 Committer: Robert Bradshaw <[email protected]> Committed: Thu May 11 15:15:06 2017 -0700 ---------------------------------------------------------------------- sdks/python/apache_beam/pvalue.py | 11 +++++++++++ 1 file changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/d531219f/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.
