Skip to content

Commit 63e4882

Browse files
committed
small pipeline fixes
1 parent 1c5ac85 commit 63e4882

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/development/extending.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ To register the entry point for your accessor, follow the format shown below:
8989
9090
Alternatively, if you are using a ``pyproject.toml``-based build:
9191

92-
.. code-block:: toml
92+
.. code-block:: none
9393
9494
# pyproject.toml
9595
[project.entry-points."pandas.DataFrame.accessor"]

pandas/core/accessor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ def accessor_entry_point_loader() -> None:
480480
"pandas.Index.accessor": register_index_accessor,
481481
}
482482

483-
PD_OBJ_ENTRYPOINTS: tuple[str] = tuple(ACCESSOR_REGISTRY_FUNCTIONS.keys())
483+
PD_OBJ_ENTRYPOINTS: tuple[str, ...] = tuple(ACCESSOR_REGISTRY_FUNCTIONS.keys())
484484

485485
for pd_obj_entrypoint in PD_OBJ_ENTRYPOINTS:
486486
accessors: EntryPoints = entry_points(group=pd_obj_entrypoint)

0 commit comments

Comments
 (0)