Files
django-stubs/django/db/migrations/topological_sort.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

10 lines
194 B
Python

from typing import (
Any,
Iterator,
)
def stable_topological_sort(l: Any, dependency_graph: Any) -> Any: ...
def topological_sort_as_sets(dependency_graph: Any) -> Iterator[Any]: ...