https://github.com/SoftwareHeritage/swh-model
Raw File
Tip revision: 3b2e6c03c1e53e4f9a55858e8f8cdde8bb8ce9cb authored by Antoine R. Dumont (@ardumont) on 06 August 2020, 16:13:47 UTC
setup.py: Use the correct keywords
Tip revision: 3b2e6c0
__init__.py
from pkgutil import extend_path
from typing import Iterable

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