swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 525cf13fec87aa9f2c5c6360cff18905a5c72ffe authored by Jenkins for Software Heritage on 04 June 2020, 10:28:41 UTC
New upstream version 0.1.0
Tip revision: 525cf13
__init__.py
from pkgutil import extend_path
from typing import Iterable

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