We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f32134 commit 80e07eaCopy full SHA for 80e07ea
pandas_flavor/register.py
@@ -115,7 +115,7 @@ def __init__(self, pandas_obj):
115
def __call__(self, *args, **kwargs):
116
global method_call_ctx_factory
117
if method_call_ctx_factory is None:
118
- return method(obj, *args, **kwargs)
+ return method(self._obj, *args, **kwargs)
119
120
return handle_pandas_extension_call(
121
method, method_signature, self._obj, args, kwargs
@@ -144,7 +144,7 @@ def __init__(self, pandas_obj):
144
145
146
147
148
149
150
0 commit comments