jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/680585 )
Change subject: [doc] Add specialbots to doc ......................................................................
[doc] Add specialbots to doc
Sphinx uses __all__ to include code parts into
Bug: T280316 Change-Id: I38eef18829506358bba2df835da811a7de2a744a --- M pywikibot/specialbots/__init__.py 1 file changed, 9 insertions(+), 1 deletion(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/specialbots/__init__.py b/pywikibot/specialbots/__init__.py index e049a28..97b36dc 100644 --- a/pywikibot/specialbots/__init__.py +++ b/pywikibot/specialbots/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/python """Module containing special bots reusable by scripts.""" # -# (C) Pywikibot team, 2020 +# (C) Pywikibot team, 2020-2021 # # Distributed under the terms of the MIT license. # @@ -9,3 +9,11 @@ EditReplacement, InteractiveUnlink, BaseUnlinkBot ) from pywikibot.specialbots._upload import UploadRobot + + +__all__ = ( + 'BaseUnlinkBot', + 'EditReplacement', + 'InteractiveUnlink', + 'UploadRobot', +)
pywikibot-commits@lists.wikimedia.org