mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-27 12:02:20 +08:00
10 lines
194 B
Python
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]: ... |