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 95b7a5c commit 0eb5bc1Copy full SHA for 0eb5bc1
pandas/core/accessor.py
@@ -472,9 +472,9 @@ def accessor_entry_point_loader() -> None:
472
"pandas.Index.accessor": register_index_accessor,
473
}
474
475
- pd_objects_entrypoints: list[str] = ACCESSOR_REGISTRY_FUNCTIONS.keys()
+ PD_OBJ_ENTRYPOINTS: tuple[str] = tuple(ACCESSOR_REGISTRY_FUNCTIONS.keys())
476
477
- for pd_obj_entrypoint in pd_objects_entrypoints:
+ for pd_obj_entrypoint in PD_OBJ_ENTRYPOINTS:
478
accessors: EntryPoints = entry_points(group=pd_obj_entrypoint)
479
accessor_package_dict: dict[str, str] = {}
480
0 commit comments