swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: 356eacd763d6a36ad9feaa93ea4d74b3e9ce7a60 authored by Antoine R. Dumont (@ardumont) on 02 September 2020, 13:18:07 UTC
Refactor revision_get storage API to return Revision objects
Tip revision: 356eacd
__init__.py
from pkgutil import extend_path
from typing import Iterable

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