jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1057395?usp=email )
Change subject: [flow] add __all__ to flow module ......................................................................
[flow] add __all__ to flow module
Change-Id: I3753903cca9f5f664a0c32d874a5162702c354a4 --- M pywikibot/flow.py 1 file changed, 8 insertions(+), 1 deletion(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/pywikibot/flow.py b/pywikibot/flow.py index 15e7f12..bb51164 100644 --- a/pywikibot/flow.py +++ b/pywikibot/flow.py @@ -3,7 +3,6 @@ Structured Discussions was formerly known as Flow. Flow was renamed in 2017 as the focus was scoped to user-to-user discussions.
-.. versionadded:: 3.0.20170403 .. caution:: Structured Discussions support previously known as Flow is no longer tested because the test environment was disabled. Please use this module with care. @@ -39,6 +38,14 @@ from pywikibot.tools import cached, deprecated_args
+__all__ = ( + 'Board', + 'FlowPage', + 'Post', + 'Topic', +) + + class FlowPage(BasePage, abc.ABC):
"""The base page meta class for the Flow extension.
pywikibot-commits@lists.wikimedia.org