jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/742281 )
Change subject: [flake8] Ignore bugbear B18 false possitives ......................................................................
[flake8] Ignore bugbear B18 false possitives
Change-Id: I3f58feace1fe392b1dbaf4b15fefdc1f5d841def --- M pywikibot/families/wikihow_family.py M pywikibot/family.py 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/families/wikihow_family.py b/pywikibot/families/wikihow_family.py index 38d3ab4..01dfbbd 100644 --- a/pywikibot/families/wikihow_family.py +++ b/pywikibot/families/wikihow_family.py @@ -29,7 +29,7 @@ removed_wikis = ['ca', 'cy', 'fa', 'he', 'pl', 'ur']
title_delimiter_and_aliases = '- ' - """.. versionadded:: 7.0""" + """.. versionadded:: 7.0""" # noqa: B018
@classproperty def domains(cls): diff --git a/pywikibot/family.py b/pywikibot/family.py index 6d515bc..ac8f682 100644 --- a/pywikibot/family.py +++ b/pywikibot/family.py @@ -555,7 +555,7 @@ escape sequence if necessary
.. versionadded:: 7.0 - """ + """ # noqa: B018
_families = {}
pywikibot-commits@lists.wikimedia.org