Skip to content

Commit 50d97d1

Browse files
committed
Never -> None
1 parent 443ebbc commit 50d97d1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pandas/core/arrays/string_arrow.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import re
55
from typing import (
66
TYPE_CHECKING,
7-
Never,
87
Union,
98
)
109
import warnings
@@ -482,7 +481,7 @@ def _cmp_method(self, other, op):
482481
return result.to_numpy(np.bool_, na_value=False)
483482
return result
484483

485-
def __pos__(self) -> Never:
484+
def __pos__(self) -> None:
486485
raise TypeError(f"bad operand type for unary +: '{self.dtype}'")
487486

488487

0 commit comments

Comments
 (0)