pipdeptree/tests/our_types.py

10 lines
181 B
Python
Raw Normal View History

2023-07-15 14:43:08 +00:00
from __future__ import annotations
from typing import Dict, List, Tuple
MockGraph = Dict[Tuple[str, str], List[Tuple[str, List[Tuple[str, str]]]]]
__all__ = [
"MockGraph",
]