Source code for families.wikitech_family

"""Family module for Wikitech."""
#
# (C) Pywikibot team, 2005-2022
#
# Distributed under the terms of the MIT license.
#
from __future__ import annotations

from pywikibot import family


# The Wikitech family
[docs] class Family(family.WikimediaOrgFamily): """Family class for Wikitech.""" name = 'wikitech' code = 'en'
[docs] def protocol(self, code) -> str: """Return the protocol for this family.""" return 'https'