https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: ddd61c73191c4039b21c9cda101a8c2135e4fe7e authored by Jenkins for Software Heritage on 02 July 2020, 13:18:56 UTC
Updated backport on buster-swh from debian/0.3.7-1_swh1 (unstable-swh)
Tip revision: ddd61c7
__init__.py
from pkgutil import extend_path
from typing import Iterable

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