Skip to content

Commit 23993c9

Browse files
committed
Fix type-hint
1 parent f77f4e7 commit 23993c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/string_arrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def _cmp_method(self, other, op):
481481
return result.to_numpy(np.bool_, na_value=False)
482482
return result
483483

484-
def __pos__(self) -> None:
484+
def __pos__(self) -> Self:
485485
raise TypeError(f"bad operand type for unary +: '{self.dtype}'")
486486

487487

0 commit comments

Comments
 (0)