swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: b579670a74bcdc74ebc27c143cd0054ae11d878d authored by Jenkins for Software Heritage on 30 April 2020, 12:58:55 UTC
New upstream version 0.0.189
Tip revision: b579670
__init__.py
from pkgutil import extend_path
from typing import Iterable

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