swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: a3fd8269308abb159a73a94f8328b464549ac9ac authored by Nicolas Dandrimont on 21 November 2019, 13:10:29 UTC
Migrate tox.ini to extras = xxx instead of deps = .[testing]
Tip revision: a3fd826
__init__.py
from pkgutil import extend_path
from typing import Iterable

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