This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
217 B

  1. # -*- coding: utf-8 -*-
  2. from typing import Literal
  3. class Tree:
  4. ...
  5. def pydot__tree_to_png(
  6. tree: Tree,
  7. filename: str,
  8. rankdir: Literal["TB", "LR", "BT", "RL"] = ...,
  9. **kwargs
  10. ) -> None:
  11. ...