File: our_types.py

package info (click to toggle)
python-pipdeptree 2.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 348 kB
  • sloc: python: 3,286; sh: 28; makefile: 5
file content (7 lines) | stat: -rw-r--r-- 163 bytes parent folder | download
1
2
3
4
5
6
7
from __future__ import annotations

MockGraph = dict[tuple[str, str], list[tuple[str, list[tuple[str, str]]]]]  # pragma: no cover

__all__ = [
    "MockGraph",
]