We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38501e6 commit dccec7fCopy full SHA for dccec7f
pandas/core/arrays/base.py
@@ -335,7 +335,7 @@ def __iter__(self):
335
for i in range(len(self)):
336
yield self[i]
337
338
- def __eq__(self, other: Any) -> ArrayLike:
+ def __eq__(self, other: Any) -> ArrayLike: # type: ignore[override] # NOQA
339
"""
340
Return for `self == other` (element-wise equality).
341
@@ -347,7 +347,7 @@ def __eq__(self, other: Any) -> ArrayLike:
347
# underlying arrays)
348
raise AbstractMethodError(self)
349
350
- def __ne__(self, other: Any) -> ArrayLike:
+ def __ne__(self, other: Any) -> ArrayLike: # type: ignore[override] # NOQA
351
352
Return for `self != other` (element-wise in-equality).
353
0 commit comments