swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 1608fcd51f192da7299a51e9b71fe1f99b40ffdf authored by Valentin Lorentz on 29 January 2020, 15:15:40 UTC
Allow deprecated endpoints to be missing from a backend class.
Tip revision: 1608fcd
__init__.py
from pkgutil import extend_path
from typing import Iterable

__path__ = extend_path(__path__, __name__)  # type: Iterable[str]
back to top