Skip to content

Commit 6b5d03e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 40485ec commit 6b5d03e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas_flavor/register.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def handle_pandas_extention_call(method, method_signature, obj, args, kwargs):
2525
will modify original args and kwargs before *method* call.
2626
2727
method_call_ctx_factory function signature: (method_name: str, args: list, kwargs: dict) -> MethodCallCtx
28-
28+
2929
MethodCallCtx is an abstract class:
3030
class MethodCallCtx(abc.ABC):
3131
@abstractmethod
@@ -36,7 +36,7 @@ def __exit__(self, exc_type, exc_value, traceback) -> None: raise NotImplemented
3636
def handle_start_method_call(self, method_name: str, method_signature: inspect.Signature, method_args: list, method_kwargs: dict) -> tuple(list, dict): raise NotImplemented
3737
@abstractmethod
3838
def handle_end_method_call(self, ret: object) -> None: raise NotImplemented
39-
39+
4040
4141
Parameters
4242
----------

0 commit comments

Comments
 (0)