https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 7f124d847847e2bfacba264767a1297780522a9d authored by Jenkins for Software Heritage on 19 March 2021, 16:17:47 UTC
New upstream version 2.3.0
Tip revision: 7f124d8
__init__.py
from pkgutil import extend_path
from typing import Iterable

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