swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: dc1878b9fb507a64e4bf8a601efecdd1be8aa2d3 authored by David Douard on 29 June 2020, 14:23:45 UTC
Make release_add support adding the same object twice in the same call
Tip revision: dc1878b
__init__.py
from pkgutil import extend_path
from typing import Iterable

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