Skip to content

Commit 3644ac4

Browse files
committed
Fix rank method with nullable int
1 parent 8955762 commit 3644ac4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/masked.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ def factorize(
10571057
return codes, uniques_ea
10581058

10591059
@doc(ExtensionArray._values_for_argsort)
1060-
def _values_for_argsort(self) -> Self:
1060+
def _values_for_argsort(self) -> np.ndarray:
10611061
return self._data
10621062

10631063
def value_counts(self, dropna: bool = True) -> Series:

0 commit comments

Comments
 (0)