https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 51eb539dafdd39ef8707b5431fba8552ab3d6752 authored by Jenkins for Software Heritage on 11 March 2021, 13:22:58 UTC
Updated backport on buster-swh from debian/2.1.0-1_swh1 (unstable-swh)
Tip revision: 51eb539
__init__.py
from pkgutil import extend_path
from typing import Iterable

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