Skip to content

Commit 241ba6c

Browse files
committed
lint
1 parent 2f0f100 commit 241ba6c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pandas/core/arrays/base.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2340,11 +2340,9 @@ def _add_logical_ops(cls) -> None:
23402340
setattr(cls, "__ror__", cls._create_logical_method(roperator.ror_))
23412341
setattr(cls, "__xor__", cls._create_logical_method(operator.xor))
23422342
setattr(cls, "__rxor__", cls._create_logical_method(roperator.rxor))
2343-
2344-
def round(self, decimals: int = 0, *args, **kwargs) -> self:
2345-
raise AbstractMethodError(self)
23462343

2347-
2344+
def round(self, decimals: int = 0, *args, **kwargs) -> Self:
2345+
raise AbstractMethodError(self)
23482346

23492347

23502348
class ExtensionScalarOpsMixin(ExtensionOpsMixin):

0 commit comments

Comments
 (0)