Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8e3669f

Browse files
committedMay 13, 2022
fixed a reportInvalidTypeVarUse
1 parent b47075d commit 8e3669f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pandas/core/arrays/masked.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ def equals(self, other) -> bool:
957957
return array_equivalent(left, right, dtype_equal=True)
958958

959959
def _quantile(
960-
self: BaseMaskedArrayT, qs: npt.NDArray[np.float64], interpolation: str
960+
self, qs: npt.NDArray[np.float64], interpolation: str
961961
) -> BaseMaskedArray:
962962
"""
963963
Dispatch to quantile_with_mask, needed because we do not have

0 commit comments

Comments
 (0)
Please sign in to comment.