Files
django-stubs/django-stubs/db/migrations/topological_sort.pyi
Maxim Kurnikov b686751f19 fix some stubs
2019-02-22 02:55:49 +03:00

9 lines
348 B
Python

from typing import Dict, Iterator, List, Set
from django.db.migrations.operations.base import Operation
def topological_sort_as_sets(dependency_graph: Dict[Operation, Set[Operation]]) -> Iterator[Set[Operation]]: ...
def stable_topological_sort(
l: List[Operation], dependency_graph: Dict[Operation, Set[Operation]]
) -> List[Operation]: ...