https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 8e0119962bbf333712fe0bcc829b9fe4732b1511 authored by Valentin Lorentz on 26 February 2021, 13:59:43 UTC
Add CoreSWHID.to_extended()
Tip revision: 8e01199
__init__.py
from pkgutil import extend_path
from typing import Iterable

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