8000 TYP: Type ``MaskedArray.sort`` by MarcoGorelli · Pull Request #28664 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

TYP: Type MaskedArray.sort #28664

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Apr 7, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
sort imports manually
  • Loading branch information
MarcoGorelli committed Apr 7, 2025
commit 080f708d39b77223522218a90fc7bab9abf1f6b5
6 changes: 3 additions & 3 deletions numpy/ma/core.pyi
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# pyright: reportIncompatibleMethodOverride=false
# ruff: noqa: ANN001, ANN002, ANN003, ANN201, ANN202 ANN204

from typing import Any, Literal, SupportsIndex, TypeVar, overload, TypeAlias, Sequence
from typing import Any, Literal, Sequence, SupportsIndex, TypeAlias, TypeVar, overload

from _typeshed import Incomplete
from typing_extensions import deprecated

from numpy import (
intp,
_SortKind,
_OrderKACF,
_SortKind,
amax,
amin,
bool_,
dtype,
expand_dims,
float64,
generic,
intp,
ndarray,
)
from numpy._globals import _NoValueType
Expand Down
Loading
0