Skip to content

Commit 64de4aa

Browse files
committed
Type-hint fixes
1 parent 0896a2f commit 64de4aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/arrays/masked.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1840,10 +1840,10 @@ def all(
18401840
result = maybe_unbox_numpy_scalar(values.all(axis=axis))
18411841

18421842
if skipna:
1843-
return result # type: ignore[return-value]
1843+
return result
18441844
else:
18451845
if not result or len(self) == 0 or not self._mask.any():
1846-
return result # type: ignore[return-value]
1846+
return result
18471847
else:
18481848
return self.dtype.na_value
18491849

0 commit comments

Comments
 (0)