We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44155ac commit 1f2fb54Copy full SHA for 1f2fb54
pandas/core/arrays/string_.py
@@ -727,8 +727,8 @@ def __arrow_array__(self, type=None):
727
values[self.isna()] = None
728
return pa.array(values, type=type, from_pandas=True)
729
730
- # type: ignore[override]
731
- def _values_for_factorize(self) -> tuple[np.ndarray, libmissing.NAType | float]:
+
+ def _values_for_factorize(self) -> tuple[np.ndarray, libmissing.NAType | float]: # type: ignore[override]
732
arr = self._ndarray
733
734
return arr, self.dtype.na_value
0 commit comments