https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: a4565867b89ae018060a614065ebd436a630d4e7 authored by Jenkins for Software Heritage on 12 October 2020, 10:19:09 UTC
New upstream version 0.7.1
Tip revision: a456586
__init__.py
from pkgutil import extend_path
from typing import Iterable

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