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 374fed8 commit be69547Copy full SHA for be69547
pandas/core/arrays/string_.py
@@ -728,8 +728,8 @@ def __arrow_array__(self, type=None):
728
values[self.isna()] = None
729
return pa.array(values, type=type, from_pandas=True)
730
731
- # type: ignore[override]
732
- 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]
733
arr = self._ndarray
734
735
return arr, self.dtype.na_value
0 commit comments