File: util.pyi

package info (click to toggle)
python-html5rdf 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,448 kB
  • sloc: python: 12,794; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
from typing import TypeVar, Callable, List, Text

_A = TypeVar("_A")

def pretty_tree(
    x: _A, kids: Callable[[_A], List[_A]], show: Callable[[_A], Text]
) -> Text: ...