Revision 3b26bf368fd59f2f39e63135c44d4da04424bad7 authored by Nicolas Dandrimont on 21 November 2019, 12:45:48 UTC, committed by Nicolas Dandrimont on 21 November 2019, 12:45:48 UTC
Allows us to call tests on things other than python3, with the same settings.
1 parent 1ff9e52
Raw File
__init__.py
from pkgutil import extend_path
from typing import Iterable

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