pipdeptree/tests/our_types.py

8 lines
163 B
Python

from __future__ import annotations
MockGraph = dict[tuple[str, str], list[tuple[str, list[tuple[str, str]]]]] # pragma: no cover
__all__ = [
"MockGraph",
]