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 1c5ac85 commit 294f524Copy full SHA for 294f524
pandas/core/accessor.py
@@ -480,7 +480,7 @@ def accessor_entry_point_loader() -> None:
480
"pandas.Index.accessor": register_index_accessor,
481
}
482
483
- PD_OBJ_ENTRYPOINTS: tuple[str] = tuple(ACCESSOR_REGISTRY_FUNCTIONS.keys())
+ PD_OBJ_ENTRYPOINTS: tuple[str, ...] = tuple(ACCESSOR_REGISTRY_FUNCTIONS.keys())
484
485
for pd_obj_entrypoint in PD_OBJ_ENTRYPOINTS:
486
accessors: EntryPoints = entry_points(group=pd_obj_entrypoint)
0 commit comments