https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 37cdd8491100909380072a727bb97de97554204f authored by Antoine R. Dumont (@ardumont) on 06 August 2020, 16:43:30 UTC
setup.py: Really use the correct keyword
Tip revision: 37cdd84
__init__.py
from pkgutil import extend_path
from typing import Iterable

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