summaryrefslogtreecommitdiff
path: root/src/pip/_vendor/resolvelib/reporters.pyi
blob: 03d4f09a390ed826ede508c6c9b26259d6c74621 (plain)
1
2
3
4
5
6
7
8
9
10
11
from typing import Any

class BaseReporter:
    def starting(self) -> Any: ...
    def starting_round(self, index: int) -> Any: ...
    def ending_round(self, index: int, state: Any) -> Any: ...
    def ending(self, state: Any) -> Any: ...
    def adding_requirement(self, requirement: Any, parent: Any) -> Any: ...
    def backtracking(self, candidate: Any) -> Any: ...
    def resolving_conflicts(self, causes: Any) -> Any: ...
    def pinning(self, candidate: Any) -> Any: ...