https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 8ebbd216831551fe7c972fd6338dfa73a5115172 authored by Valentin Lorentz on 04 February 2020, 14:49:31 UTC
Split Content class into two classes, for missing and non-missing contents.
Tip revision: 8ebbd21
__init__.py
from pkgutil import extend_path
from typing import Iterable

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