Skip to content

Commit 3da4f2f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 8ff569d commit 3da4f2f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

stdlib/heapq.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@ __about__: Final[str]
1818
def merge(*iterables: Iterable[_S], key: Callable[[_S], SupportsRichComparison], reverse: bool = False) -> Generator[_S]: ...
1919
@overload
2020
def merge(*iterables: Iterable[_T], key: None = None, reverse: bool = False) -> Generator[_T]: ...
21+
2122
@overload
2223
def nlargest(n: int, iterable: Iterable[_S], key: Callable[[_S], SupportsRichComparison]) -> list[_S]: ...
2324
@overload
2425
def nlargest(n: int, iterable: Iterable[_T], key: None = None) -> list[_T]: ...
26+
2527
@overload
2628
def nsmallest(n: int, iterable: Iterable[_S], key: Callable[[_S], SupportsRichComparison]) -> list[_S]: ...
2729
@overload
2830
def nsmallest(n: int, iterable: Iterable[_T], key: None = None) -> list[_T]: ...
31+
2932
def _heapify_max(heap: list[SupportsRichComparison], /) -> None: ... # undocumented

0 commit comments

Comments
 (0)