Skip to content

Commit be69547

Browse files
authored
Update string_.py
1 parent 374fed8 commit be69547

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
@@ -728,8 +728,8 @@ def __arrow_array__(self, type=None):
728728
values[self.isna()] = None
729729
return pa.array(values, type=type, from_pandas=True)
730730

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

735735
return arr, self.dtype.na_value

0 commit comments

Comments
 (0)