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 ded0b0d commit f2a036eCopy full SHA for f2a036e
pandas/core/accessor.py
@@ -27,7 +27,7 @@
27
from pandas import Index
28
from pandas.core.generic import NDFrame
29
30
-from importlib_metadata import entry_points
+from importlib.metadata import entry_points
31
32
33
class DirNamesMixin:
@@ -412,7 +412,7 @@ def load(cls) -> None:
412
for ep in eps:
413
name: str = ep.name
414
415
- def make_property(ep) -> Callable[[DataFrame], Any]:
+ def make_property(ep):
416
def accessor(self) -> Any:
417
cls_ = ep.load()
418
return cls_(self)
0 commit comments