Skip to content

Commit 36e2fb7

Browse files
DOC: fix SA01 for pandas.MultiIndex.dtypes (#58834)
1 parent 0347e43 commit 36e2fb7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
7979
-i "pandas.MultiIndex.append PR07,SA01" \
8080
-i "pandas.MultiIndex.copy PR07,RT03,SA01" \
8181
-i "pandas.MultiIndex.drop PR07,RT03,SA01" \
82-
-i "pandas.MultiIndex.dtypes SA01" \
8382
-i "pandas.MultiIndex.get_level_values SA01" \
8483
-i "pandas.MultiIndex.get_loc PR07" \
8584
-i "pandas.MultiIndex.get_loc_level PR07" \

pandas/core/indexes/multi.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,11 @@ def dtypes(self) -> Series:
775775
"""
776776
Return the dtypes as a Series for the underlying MultiIndex.
777777
778+
See Also
779+
--------
780+
Index.dtype : Return the dtype object of the underlying data.
781+
Series.dtypes : Return the data type of the underlying Series.
782+
778783
Examples
779784
--------
780785
>>> idx = pd.MultiIndex.from_product(

0 commit comments

Comments
 (0)