swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: b6971b51399a6cfc612d28894a8c990da006676a authored by Antoine R. Dumont (@ardumont) on 16 July 2020, 13:06:55 UTC
pytest_plugin: Ensure fixture instantiates correctly
Tip revision: b6971b5
__init__.py
from pkgutil import extend_path
from typing import Iterable

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