swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 2fd48eaa903b82268f5a81927d79ad1f58cd4dd6 authored by Antoine R. Dumont (@ardumont) on 07 August 2020, 21:03:31 UTC
d/changelog: Bump new release
Tip revision: 2fd48ea
__init__.py
from pkgutil import extend_path
from typing import Iterable

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