https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 4e4c4ff26b837b1c74a9f121b84aa0eb01dc05fc authored by Antoine Lambert on 28 November 2019, 16:01:48 UTC
model: Add automatic object identifier computation support
Tip revision: 4e4c4ff
__init__.py
from pkgutil import extend_path
from typing import Iterable

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