https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: cd9d24c88b5820f3b701be3b9845b577161b177c authored by Jenkins for Software Heritage on 06 August 2020, 18:04:14 UTC
Updated backport on buster-swh from debian/0.6.5-1_swh1 (unstable-swh)
Tip revision: cd9d24c
__init__.py
from pkgutil import extend_path
from typing import Iterable

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