Skip to content

Commit 1f2fb54

Browse files
authored
Update string_.py
1 parent 44155ac commit 1f2fb54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/arrays/string_.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -727,8 +727,8 @@ def __arrow_array__(self, type=None):
727727
values[self.isna()] = None
728728
return pa.array(values, type=type, from_pandas=True)
729729

730-
# type: ignore[override]
731-
def _values_for_factorize(self) -> tuple[np.ndarray, libmissing.NAType | float]:
730+
731+
def _values_for_factorize(self) -> tuple[np.ndarray, libmissing.NAType | float]: # type: ignore[override]
732732
arr = self._ndarray
733733

734734
return arr, self.dtype.na_value

0 commit comments

Comments
 (0)