We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647b02f commit ea7e318Copy full SHA for ea7e318
flink-python/pyflink/__init__.py
@@ -25,6 +25,8 @@
25
'Python versions prior to 3.6 are not supported for PyFlink [' +
26
str(sys.version_info) + '].')
27
28
+from pyflink.version import __version__
29
+
30
31
def keyword(func):
32
"""
@@ -50,3 +52,7 @@ def add_version_doc(f, version):
50
52
indents = indent_p.findall(original_doc)
51
53
indent = ' ' * (min(len(indent) for indent in indents) if indents else 0)
54
f.__doc__ = original_doc.rstrip() + "\n\n%s.. versionadded:: %s" % (indent, version)
55
56
+__all__ = [
57
+ "__version__",
58
+]
0 commit comments